about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/daemonize/default.nix
blob: 9db823806843d149431da83291ee6b789bfe1d13 (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;
  };

}