pythonPackages goocalendar: init at 0.3
This commit is contained in:
parent
0f8749b092
commit
31ebb53b12
44
pkgs/development/python-modules/goocalendar/default.nix
Normal file
44
pkgs/development/python-modules/goocalendar/default.nix
Normal file
@ -0,0 +1,44 @@
|
||||
{ stdenv
|
||||
, fetchPypi
|
||||
, buildPythonPackage
|
||||
, pkgconfig
|
||||
, gtk3
|
||||
, gobjectIntrospection
|
||||
, pygtk
|
||||
, pygobject3
|
||||
, goocanvas2
|
||||
, isPy3k
|
||||
}:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "GooCalendar";
|
||||
version = "0.3";
|
||||
|
||||
disabled = isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1p7qbcv06xipg48sgpdlqf72ajl3n1qlypcc0giyi1a72zpyf823";
|
||||
};
|
||||
nativeBuildInputs = [ pkgconfig gobjectIntrospection ];
|
||||
propagatedBuildInputs = [
|
||||
pygtk
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -253,6 +253,8 @@ in {
|
||||
|
||||
globus-sdk = callPackage ../development/python-modules/globus-sdk { };
|
||||
|
||||
goocalendar = callPackage ../development/python-modules/goocalendar { };
|
||||
|
||||
gssapi = callPackage ../development/python-modules/gssapi { };
|
||||
|
||||
h5py = callPackage ../development/python-modules/h5py {
|
||||
|
Loading…
Reference in New Issue
Block a user