depot/third_party/nixpkgs/pkgs/development/python-modules/pytools/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

44 lines
863 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
decorator,
numpy,
platformdirs,
typing-extensions,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pytools";
version = "2024.1.6";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-u9t1BrCWakShd8XlVWdb7OHmXhW7sRFPNwsiPgaTIrk=";
};
propagatedBuildInputs = [
decorator
numpy
platformdirs
] ++ lib.optionals (pythonOlder "3.11") [ typing-extensions ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"pytools"
"pytools.batchjob"
"pytools.lex"
];
meta = {
homepage = "https://github.com/inducer/pytools/";
description = "Miscellaneous Python lifesavers";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ artuuge ];
};
}