nixpkgs/pkgs/development/python-modules/sdnotify/default.nix

22 lines
494 B
Nix
Raw Normal View History

2018-11-20 13:30:59 +00:00
{ 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 ];
};
}