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