xeus-cling: fix improper linking with LLVM (#351130)
[NixPkgs.git] / pkgs / development / python-modules / xarray-einstats / default.nix
blobdb1b1c5504b16ed50c0a589fb0d5970804189428
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.8.0";
18   pyproject = true;
20   disabled = pythonOlder "3.10";
22   src = fetchFromGitHub {
23     owner = "arviz-devs";
24     repo = "xarray-einstats";
25     rev = "refs/tags/v${version}";
26     hash = "sha256-XvxsyH8cwsA9B36uhM1Pr5XaNd0d0/nEamA4axdJe24=";
27   };
29   build-system = [ flit-core ];
31   dependencies = [
32     numpy
33     scipy
34     xarray
35   ];
37   optional-dependencies = {
38     einops = [ einops ];
39     numba = [ numba ];
40   };
42   nativeCheckInputs = [ pytestCheckHook ] ++ lib.flatten (builtins.attrValues optional-dependencies);
44   pythonImportsCheck = [ "xarray_einstats" ];
46   disabledTests = [
47     # TypeError
48     "test_pinv"
49   ];
51   meta = with lib; {
52     description = "Stats, linear algebra and einops for xarray";
53     homepage = "https://github.com/arviz-devs/xarray-einstats";
54     license = licenses.asl20;
55     maintainers = with maintainers; [ fab ];
56   };