summary refs log tree commit diff
path: root/pkgs/development/python-modules/daemonize/default.nix
blob: 2f7992e860ffb9d4b8cdccfe6e829581a2b602de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "daemonize";
  version = "2.5.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1hwbl3gf9fdds9sc14zgjyjisjvxidrvqc11xlbb0b6jz17nw0nx";
  };

  meta = with stdenv.lib; {
    description = "Library to enable your code run as a daemon process on Unix-like systems";
    homepage = https://github.com/thesharp/daemonize;
    license = licenses.mit;
  };

}