Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / sdnotify / default.nix
bloba447283c63ab0b2722e03116cfd8c9b426065655
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "sdnotify";
8   version = "0.3.2";
10   src = fetchPypi {
11     sha256 = "1wdrdg2j16pmqhk0ify20s5pngijh7zc6hyxhh8w8v5k8v3pz5vk";
12     inherit pname version;
13   };
15   meta = with lib; {
16     description = "A pure Python implementation of systemd's service notification protocol";
17     homepage = "https://github.com/bb4242/sdnotify";
18     license = licenses.mit;
19     maintainers = with maintainers; [ pmiddend ];
20   };