nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, nose
5}:
6
7buildPythonPackage rec {
8 pname = "pid";
9 version = "2.2.5";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "96eb7dba326b88f5164bc1afdc986c7793e0d32d7f62366256a3903c7b0614ef";
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}