pythonPackages.sdnotify: init at 0.3.2
This commit is contained in:
parent
f55a63329d
commit
fbbfc7a36f
2 changed files with 23 additions and 0 deletions
21
pkgs/development/python-modules/sdnotify/default.nix
Normal file
21
pkgs/development/python-modules/sdnotify/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "sdnotify";
|
||||
version = "0.3.2";
|
||||
|
||||
src = fetchPypi {
|
||||
sha256 = "1wdrdg2j16pmqhk0ify20s5pngijh7zc6hyxhh8w8v5k8v3pz5vk";
|
||||
inherit pname version;
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A pure Python implementation of systemd's service notification protocol";
|
||||
homepage = https://github.com/bb4242/sdnotify;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ pmiddend ];
|
||||
};
|
||||
}
|
|
@ -4650,6 +4650,8 @@ in {
|
|||
|
||||
tvdb_api = callPackage ../development/python-modules/tvdb_api { };
|
||||
|
||||
sdnotify = callPackage ../development/python-modules/sdnotify { };
|
||||
|
||||
tvnamer = callPackage ../development/python-modules/tvnamer { };
|
||||
|
||||
threadpool = callPackage ../development/python-modules/threadpool { };
|
||||
|
|
Loading…
Reference in a new issue