about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/python-daemon/default.nix
blob: e33aee6c1c919d6a0e977cad7cbe58d8a1cf982d (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
28
29
30
31
32
33
34
35
36
37
38
39
40
{ lib, buildPythonPackage, fetchPypi
, docutils
, lockfile
, mock
, pytest
, testscenarios
, twine
}:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "57c84f50a04d7825515e4dbf3a31c70cc44414394a71608dee6cfde469e81766";
  };

  nativeBuildInputs = [ twine ];
  propagatedBuildInputs = [ docutils lockfile ];

  checkInputs = [ pytest mock testscenarios ];
  checkPhase = ''
    pytest -k 'not detaches_process_context \
                and not standard_stream_file_descriptors'
  '';

  pythonImportsCheck = [
    "daemon"
    "daemon.daemon"
    "daemon.pidfile"
    "daemon.runner"
  ];

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