nixpkgs/pkgs/development/python-modules/pynisher/default.nix
2023-07-24 18:17:19 +00:00

40 lines
726 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, psutil
, pythonOlder
, typing-extensions
}:
buildPythonPackage rec {
pname = "pynisher";
version = "1.0.8";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-BTH34zv7OAaVKc20VASfv3QaxAt/Y14Dkd/PBo/V6vo=";
};
propagatedBuildInputs = [
psutil
typing-extensions
];
# No tests in the Pypi archive
doCheck = false;
pythonImportsCheck = [
"pynisher"
];
meta = with lib; {
description = "Module intended to limit a functions resources";
homepage = "https://github.com/automl/pynisher";
license = licenses.mit;
maintainers = with maintainers; [ psyanticy ];
};
}