python310Packages.gaphas: add changelog to meta

This commit is contained in:
Fabian Affolter 2022-12-26 09:44:09 +01:00 committed by GitHub
parent 2b3965ea95
commit b5f0db7d48
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,20 +13,23 @@
buildPythonPackage rec {
pname = "gaphas";
version = "3.9.2";
disabled = pythonOlder "3.7";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-hw8aGjsrx6xWPbFybpss5EB3eg6tmxgkXpGiWguLKP4=";
hash = "sha256-hw8aGjsrx6xWPbFybpss5EB3eg6tmxgkXpGiWguLKP4=";
};
nativeBuildInputs = [
poetry-core
];
buildInputs = [ gobject-introspection gtk3 ];
buildInputs = [
gobject-introspection
gtk3
];
propagatedBuildInputs = [
pycairo
@ -34,12 +37,15 @@ buildPythonPackage rec {
typing-extensions
];
pythonImportsCheck = [ "gaphas" ];
pythonImportsCheck = [
"gaphas"
];
meta = with lib; {
description = "GTK+ based diagramming widget";
maintainers = with maintainers; [ wolfangaukang ];
homepage = "https://github.com/gaphor/gaphas";
changelog = "https://github.com/gaphor/gaphas/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ wolfangaukang ];
};
}