biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / filterpy / default.nix
blob039c2e863ac756e8e6547bb3290056e0e3e4751b
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   numpy,
6   scipy,
7   matplotlib,
8   pytestCheckHook,
9   isPy3k,
12 buildPythonPackage {
13   pname = "filterpy";
14   version = "unstable-2022-08-23";
15   format = "setuptools";
17   disabled = !isPy3k;
19   src = fetchFromGitHub {
20     owner = "rlabbe";
21     repo = "filterpy";
22     rev = "3b51149ebcff0401ff1e10bf08ffca7b6bbc4a33";
23     hash = "sha256-KuuVu0tqrmQuNKYmDmdy+TU6BnnhDxh4G8n9BGzjGag=";
24   };
26   nativeCheckInputs = [ pytestCheckHook ];
28   propagatedBuildInputs = [
29     numpy
30     scipy
31     matplotlib
32   ];
34   meta = with lib; {
35     homepage = "https://github.com/rlabbe/filterpy";
36     description = "Kalman filtering and optimal estimation library";
37     license = licenses.mit;
38     maintainers = [ ];
39   };