nixpkgs/pkgs/development/python-modules/daemonize/default.nix
R. RyanTM 69bd65aca3 python37Packages.daemonize: 2.4.7 -> 2.5.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-daemonize/versions
2019-01-02 17:12:47 -05:00

22 lines
450 B
Nix

{ 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;
};
}