depot/third_party/nixpkgs/pkgs/development/python-modules/xarray-einstats/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

52 lines
921 B
Nix

{
lib,
buildPythonPackage,
einops,
fetchFromGitHub,
flit-core,
numba,
numpy,
pandas,
pytestCheckHook,
pythonOlder,
scipy,
xarray,
}:
buildPythonPackage rec {
pname = "xarray-einstats";
version = "0.7.0";
format = "pyproject";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "arviz-devs";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-aljjwgBJp341aQN3g1PoZPj+46x21Eu+svG1yzURhJE=";
};
nativeBuildInputs = [ flit-core ];
propagatedBuildInputs = [
numpy
scipy
xarray
];
nativeCheckInputs = [
einops
numba
pytestCheckHook
];
pythonImportsCheck = [ "xarray_einstats" ];
meta = with lib; {
description = "Stats, linear algebra and einops for xarray";
homepage = "https://github.com/arviz-devs/xarray-einstats";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}