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

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

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

  meta = with 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;
  };

}