biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / xarray-einstats / default.nix
blobb82a8a8cd79f435aaa781a172fb8e1fbd96149d0
2   lib,
3   buildPythonPackage,
4   einops,
5   fetchFromGitHub,
6   flit-core,
7   numba,
8   numpy,
9   pytestCheckHook,
10   pythonOlder,
11   scipy,
12   xarray,
15 buildPythonPackage rec {
16   pname = "xarray-einstats";
17   version = "0.7.0";
18   format = "pyproject";
20   disabled = pythonOlder "3.9";
22   src = fetchFromGitHub {
23     owner = "arviz-devs";
24     repo = pname;
25     rev = "refs/tags/v${version}";
26     hash = "sha256-aljjwgBJp341aQN3g1PoZPj+46x21Eu+svG1yzURhJE=";
27   };
29   nativeBuildInputs = [ flit-core ];
31   propagatedBuildInputs = [
32     numpy
33     scipy
34     xarray
35   ];
37   nativeCheckInputs = [
38     einops
39     numba
40     pytestCheckHook
41   ];
43   pythonImportsCheck = [ "xarray_einstats" ];
45   meta = with lib; {
46     description = "Stats, linear algebra and einops for xarray";
47     homepage = "https://github.com/arviz-devs/xarray-einstats";
48     license = licenses.asl20;
49     maintainers = with maintainers; [ fab ];
50   };