8 buildPythonPackage rec {
9 pname = "python-pidfile";
11 format = "setuptools";
14 inherit pname version;
15 hash = "sha256-pgQBL2iagsHMRFEKI85ZwyaIL7kcIftAy6s+lX958M0=";
18 propagatedBuildInputs = [ psutil ];
20 pythonImportsCheck = [ "pidfile" ];
22 # no tests on the github mirror of the source code
23 # see this: https://github.com/mosquito/python-pidfile/issues/7
27 description = "Python context manager for managing pid files";
28 homepage = "https://github.com/mosquito/python-pidfile";
29 license = with licenses; [ mit ];
30 maintainers = with maintainers; [ lom ];