summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornatsukium <tomoya.otabi@gmail.com>2023-05-30 00:26:42 +0900
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2023-05-29 19:05:06 +0000
commit028fb6380679a82e7fe3b9bd385742fd066f47db (patch)
tree402662a8a1194f9b8e75535bf292475bf55e2773
parentpythonPackages.tftpy: init 0.8.2 (diff)
downloadnixpkgs-028fb6380679a82e7fe3b9bd385742fd066f47db.tar.gz
python3Packages.filterpy: 1.4.5 -> unstable-2022-08-23
Diff: https://github.com/rlabbe/filterpy/compare/1.4.5...3b51149ebcff0401ff1e10bf08ffca7b6bbc4a33 (cherry picked from commit 111e3a55a6b047234b64cbf073dff07549c7f0fa)
-rw-r--r--pkgs/development/python-modules/filterpy/default.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/filterpy/default.nix b/pkgs/development/python-modules/filterpy/default.nix
index 877bd02ed31b..04304913eb5e 100644
--- a/pkgs/development/python-modules/filterpy/default.nix
+++ b/pkgs/development/python-modules/filterpy/default.nix
@@ -1,6 +1,6 @@
{ lib
, buildPythonPackage
-, fetchPypi
+, fetchFromGitHub
, numpy
, scipy
, matplotlib
@@ -8,15 +8,16 @@
, isPy3k
}:
-buildPythonPackage rec {
- version = "1.4.5";
+buildPythonPackage {
+ version = "unstable-2022-08-23";
pname = "filterpy";
disabled = !isPy3k;
- src = fetchPypi {
- inherit pname version;
- extension = "zip";
- sha256 = "4f2a4d39e4ea601b9ab42b2db08b5918a9538c168cff1c6895ae26646f3d73b1";
+ src = fetchFromGitHub {
+ owner = "rlabbe";
+ repo = "filterpy";
+ rev = "3b51149ebcff0401ff1e10bf08ffca7b6bbc4a33";
+ hash = "sha256-KuuVu0tqrmQuNKYmDmdy+TU6BnnhDxh4G8n9BGzjGag=";
};
nativeCheckInputs = [ pytest ];