Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pid / default.nix
blobf4ce57b3a20d1b999f032dbf9906b7afa0982c52
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , nose
5 }:
7 buildPythonPackage rec {
8   pname = "pid";
9   version = "3.0.4";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "0e33670e83f6a33ebb0822e43a609c3247178d4a375ff50a4689e266d853eb66";
14   };
16   buildInputs = [ nose ];
18   # No tests included
19   doCheck = false;
21   meta = with lib; {
22     description = "Pidfile featuring stale detection and file-locking";
23     homepage = "https://github.com/trbs/pid/";
24     license = licenses.asl20;
25   };