1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/python-modules/xarray/default.nix

37 lines
706 B
Nix
Raw Normal View History

2017-04-18 10:50:55 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, numpy
, pandas
, python
, fetchurl
2017-04-18 10:50:55 +01:00
}:
buildPythonPackage rec {
pname = "xarray";
2018-06-12 17:47:08 +01:00
version = "0.10.7";
2017-04-18 10:50:55 +01:00
src = fetchPypi {
inherit pname version;
2018-06-12 17:47:08 +01:00
sha256 = "d87241580e3eccb961dfc16e804e1b92b3d6a8000ffee82ceb076767934342cc";
2017-04-18 10:50:55 +01:00
};
2017-12-31 13:14:52 +00:00
checkInputs = [ pytest ];
2017-04-18 10:50:55 +01:00
propagatedBuildInputs = [numpy pandas];
checkPhase = ''
py.test $out/${python.sitePackages}
'';
2017-12-31 13:14:52 +00:00
# There always seem to be broken tests...
doCheck = false;
2017-04-18 10:50:55 +01:00
meta = {
description = "N-D labeled arrays and datasets in Python";
homepage = https://github.com/pydata/xarray;
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fridh ];
};
}