nixpkgs/pkgs/development/python-modules/pytools/default.nix

40 lines
676 B
Nix
Raw Normal View History

2017-12-31 11:25:36 +01:00
{ lib
, buildPythonPackage
2017-12-31 11:27:29 +01:00
, fetchPypi
2017-12-31 11:25:36 +01:00
, decorator
, appdirs
, six
, numpy
, pytest
}:
buildPythonPackage rec {
pname = "pytools";
2020-08-16 19:31:14 +02:00
version = "2020.4";
2017-12-31 11:25:36 +01:00
2017-12-31 11:27:29 +01:00
src = fetchPypi {
inherit pname version;
2020-08-16 19:31:14 +02:00
sha256 = "37db39ff11a1b5fc8aec875ae4ddb3d6c21aa0e95bddc9c841aa98e1631ae460";
2017-12-31 11:25:36 +01:00
};
checkInputs = [ pytest ];
propagatedBuildInputs = [
decorator
appdirs
six
numpy
];
checkPhase = ''
py.test -k 'not test_persistent_dict'
'';
meta = {
homepage = "https://github.com/inducer/pytools/";
2017-12-31 11:25:36 +01:00
description = "Miscellaneous Python lifesavers.";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ artuuge ];
};
}