5e9e1146e1
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
39 lines
726 B
Nix
39 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 ];
|
|
};
|
|
}
|