1{ lib
2, buildPythonPackage
3, fetchPypi
4, nose
5}:
6
7buildPythonPackage rec {
8 pname = "pid";
9 version = "3.0.4";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "0e33670e83f6a33ebb0822e43a609c3247178d4a375ff50a4689e266d853eb66";
14 };
15
16 buildInputs = [ nose ];
17
18 # No tests included
19 doCheck = false;
20
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 };
26
27}