nixpkgs/pkgs/development/python-modules/pynisher/default.nix
Weijia Wang 9b33cc8356
Merge pull request #229908 from wegank/pynisher-homepage
python311Packages.pynisher: update homepage
2023-05-04 18:04:14 +03:00

40 lines
726 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, psutil
, pythonOlder
, typing-extensions
}:
buildPythonPackage rec {
pname = "pynisher";
version = "1.0.5";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-usSowgCwGTATiX1dbPpScO9/FI+E567dvGZxAC+zS14=";
};
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 ];
};
}