1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "sdnotify";
8 version = "0.3.2";
9
10 src = fetchPypi {
11 sha256 = "1wdrdg2j16pmqhk0ify20s5pngijh7zc6hyxhh8w8v5k8v3pz5vk";
12 inherit pname version;
13 };
14
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 };
21}