summary refs log tree commit diff
path: root/pkgs/development/python-modules/goocalendar/default.nix
blob: 9fc0acc30afa4a8c36311b189dd96cb5d35ca9c8 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{ stdenv
, fetchPypi
, buildPythonPackage
, pkgconfig
, gtk3
, gobject-introspection
, pygtk
, pygobject3
, goocanvas2
, isPy3k
 }:

with stdenv.lib;

buildPythonPackage rec {
  pname = "GooCalendar";
  version = "0.6";

  disabled = !isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "4c22c93e19b933d10d8ea1c67a67f485267af82175ef59419427dd39d1e3af18";
  };

  nativeBuildInputs = [
    pkgconfig
    gobject-introspection
  ];

  propagatedBuildInputs = [
    pygobject3
  ];

  buildInputs = [
    gtk3
    goocanvas2
  ];

  # No upstream tests available
  doCheck = false;

  meta = with stdenv.lib; {
    description = "A calendar widget for GTK using PyGoocanvas.";
    homepage = https://goocalendar.tryton.org/;
    license = licenses.gpl2;
    maintainers = [ maintainers.udono ];
  };
}