Merge pull request #248891 from fabaff/goocalendar-bump

python311Packages.goocalendar: 0.7.2 -> 0.8.0
This commit is contained in:
Fabian Affolter 2023-08-13 13:32:31 +02:00 committed by GitHub
commit 0b449f097d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,23 +1,25 @@
{ lib
, fetchPypi
, buildPythonPackage
, pkg-config
, gtk3
, fetchPypi
, gobject-introspection
, pygobject3
, goocanvas2
, isPy3k
, gtk3
, pkg-config
, pygobject3
, pythonOlder
}:
buildPythonPackage rec {
pname = "GooCalendar";
version = "0.7.2";
pname = "goocalendar";
version = "0.8.0";
format = "setuptools";
disabled = !isPy3k;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "318b3b7790ac9d6d98881eee3b676fc9c17fc15d21dcdaff486e3c303333b41a";
pname = "GooCalendar";
inherit version;
hash = "sha256-LwL5TLRkD6ALucabLUeB0k4rIX+O/aW2ebS2rZPjIUs=";
};
nativeBuildInputs = [
@ -37,10 +39,15 @@ buildPythonPackage rec {
# No upstream tests available
doCheck = false;
pythonImportsCheck = [
"goocalendar"
];
meta = with lib; {
description = "A calendar widget for GTK using PyGoocanvas.";
description = "A calendar widget for GTK using PyGoocanvas";
homepage = "https://goocalendar.tryton.org/";
license = licenses.gpl2;
maintainers = [ maintainers.udono ];
changelog = "https://foss.heptapod.net/tryton/goocalendar/-/blob/${version}/CHANGELOG";
license = licenses.gpl2Only;
maintainers = with maintainers; [ udono ];
};
}