1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "sdnotify";
9 version = "0.3.2";
10 format = "setuptools";
11
12 src = fetchPypi {
13 sha256 = "1wdrdg2j16pmqhk0ify20s5pngijh7zc6hyxhh8w8v5k8v3pz5vk";
14 inherit pname version;
15 };
16
17 meta = with lib; {
18 description = "Pure Python implementation of systemd's service notification protocol";
19 homepage = "https://github.com/bb4242/sdnotify";
20 license = licenses.mit;
21 maintainers = with maintainers; [ pmiddend ];
22 };
23}