1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-21 05:25:38 +00:00
nixpkgs/pkgs/development/python-modules/daemonize/default.nix

22 lines
462 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "daemonize";
2018-11-04 10:34:56 +00:00
version = "2.4.7";
src = fetchPypi {
inherit pname version;
2018-11-04 10:34:56 +00:00
sha256 = "c0194e861826be456c7c69985825ac7b79632d8ac7ad4cde8e12fee7971468c8";
};
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;
};
}