Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 503 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, nose 5}: 6 7buildPythonPackage rec { 8 pname = "pid"; 9 version = "2.2.3"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "077da788630394adce075c88f4a087bcdb27d98cab67eb9046ebcfeedfc1194d"; 14 }; 15 16 buildInputs = [ nose ]; 17 18 # No tests included 19 doCheck = false; 20 21 meta = with stdenv.lib; { 22 description = "Pidfile featuring stale detection and file-locking"; 23 homepage = https://github.com/trbs/pid/; 24 license = licenses.asl20; 25 }; 26 27}