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

42 lines
724 B
Nix
Raw Normal View History

2017-12-31 10:25:36 +00:00
{ lib
, buildPythonPackage
2017-12-31 10:27:29 +00:00
, fetchPypi
, pythonOlder
2017-12-31 10:25:36 +00:00
, decorator
, appdirs
, six
, numpy
, pytest
}:
buildPythonPackage rec {
pname = "pytools";
version = "2021.2.1";
disabled = pythonOlder "3.6";
2017-12-31 10:25:36 +00:00
2017-12-31 10:27:29 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "ebbcc38c7a30b1a0ce1a74816c85db9f2556bb4d5b9a71f85f5d88f69ddcb96b";
2017-12-31 10:25:36 +00: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 10:25:36 +00:00
description = "Miscellaneous Python lifesavers.";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ artuuge ];
};
}