blob: ffa6f7c57c6b5510dc2efaa66902e9d0e986b8f2 (
plain)
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
|
{
lib,
buildPythonPackage,
fetchPypi,
gobject-introspection,
goocanvas2,
gtk3,
pkg-config,
pygobject3,
}:
buildPythonPackage rec {
pname = "goocalendar";
version = "0.8.0";
format = "setuptools";
src = fetchPypi {
pname = "GooCalendar";
inherit version;
hash = "sha256-LwL5TLRkD6ALucabLUeB0k4rIX+O/aW2ebS2rZPjIUs=";
};
nativeBuildInputs = [
pkg-config
gobject-introspection
];
propagatedBuildInputs = [ pygobject3 ];
buildInputs = [
gtk3
goocanvas2
];
# No upstream tests available
doCheck = false;
pythonImportsCheck = [ "goocalendar" ];
meta = {
description = "Calendar widget for GTK using PyGoocanvas";
homepage = "https://goocalendar.tryton.org/";
changelog = "https://foss.heptapod.net/tryton/goocalendar/-/blob/${version}/CHANGELOG";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ udono ];
};
}
|