summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-daemon/default.nix
blob: 76544adaf0b6aa7f9007b7621b6d8f610aeba722 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildPythonPackage, fetchPypi, mock, testscenarios, docutils, lockfile }:

buildPythonPackage rec {
  pname = "python-daemon";
  version = "2.2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "aca149ebf7e73f10cd554b2df5c95295d49add8666348eff6195053ec307728c";
  };

  # A test fail within chroot builds.
  doCheck = false;

  buildInputs = [ mock testscenarios ];
  propagatedBuildInputs = [ docutils lockfile ];

  meta = with lib; {
    description = "Library to implement a well-behaved Unix daemon process";
    homepage = https://alioth.debian.org/projects/python-daemon/;
    license = [ licenses.gpl3Plus licenses.asl20 ];
  };
}