linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / notify2 / default.nix
blob28c74415c5dc1e022058437ccc441507c3c97816
1 { buildPythonPackage
2 , lib
3 , fetchPypi
4 , pygobject3
5 , dbus-python
6 }:
8 buildPythonPackage rec {
9   pname = "notify2";
10   version = "0.3.1";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "0z8rrv9rsg1r2qgh2dxj3dfj5xnki98kgi3w839kqby4a26i1yik";
15   };
18   # Tests require Xorg and Dbus instance
19   doCheck = false;
20   propagatedBuildInputs = [ pygobject3
21                             dbus-python ];
23   meta = {
24     description = "Pure Python interface to DBus notifications";
25     homepage = "https://bitbucket.org/takluyver/pynotify2";
26     license = lib.licenses.bsd2;
27     maintainers = with lib.maintainers; [ mog ];
28   };