mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
69bd65aca3
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
22 lines
450 B
Nix
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;
|
|
};
|
|
|
|
}
|