ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / python-pidfile / default.nix
blob6626f0b77b3c6fde0b775b253b9e0949d9865f63
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , psutil
5 }:
7 buildPythonPackage rec {
8   pname = "python-pidfile";
9   version = "3.0.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "sha256-HhCX30G8dfV0WZ/++J6LIO/xvfyRkdPtJkzC2ulUKdA=";
14   };
16   propagatedBuildInputs = [
17     psutil
18   ];
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
24   doCheck = false;
26   meta = with lib; {
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 ];
31   };