linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / goocalendar / default.nix
blobb0eea600384e1ca7aad735a8b07f349fc420d4df
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , pkg-config
5 , gtk3
6 , gobject-introspection
7 , pygtk
8 , pygobject3
9 , goocanvas2
10 , isPy3k
11  }:
13 buildPythonPackage rec {
14   pname = "GooCalendar";
15   version = "0.7.1";
17   disabled = !isPy3k;
19   src = fetchPypi {
20     inherit pname version;
21     sha256 = "1ccvw1w7xinl574h16hqs6dh3fkpm5n1jrqwjqz3ignxvli5sr38";
22   };
24   nativeBuildInputs = [
25     pkg-config
26     gobject-introspection
27   ];
29   propagatedBuildInputs = [
30     pygobject3
31   ];
33   buildInputs = [
34     gtk3
35     goocanvas2
36   ];
38   # No upstream tests available
39   doCheck = false;
41   meta = with lib; {
42     description = "A calendar widget for GTK using PyGoocanvas.";
43     homepage = "https://goocalendar.tryton.org/";
44     license = licenses.gpl2;
45     maintainers = [ maintainers.udono ];
46   };