mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 08:14:19 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
24 lines
514 B
Nix
24 lines
514 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|