summary refs log tree commit diff
path: root/pkgs/development/python-modules/pid/default.nix
blob: 95aca29da5d102ea67eff96506ef13045069a238 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, nose
}:

buildPythonPackage rec {
  pname = "pid";
  version = "3.0.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0e33670e83f6a33ebb0822e43a609c3247178d4a375ff50a4689e266d853eb66";
  };

  buildInputs = [ nose ];

  # No tests included
  doCheck = false;

  meta = with lib; {
    description = "Pidfile featuring stale detection and file-locking";
    homepage = "https://github.com/trbs/pid/";
    license = licenses.asl20;
  };

}