Files
nixpkgs/pkgs/development/python-modules/gaphas/default.nix
T
Martin Weinelt ac0ad7b152 python3Packages.gaphas: 5.1.1 -> 5.1.2
https://github.com/gaphor/gaphas/releases/tag/5.1.2

This commit was automatically generated using update-python-libraries.
2026-02-01 16:43:53 +01:00

46 lines
821 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
gobject-introspection,
gtk3,
pycairo,
pygobject3,
typing-extensions,
}:
buildPythonPackage rec {
pname = "gaphas";
version = "5.1.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-XdawWTHzhWqWtiMmm1AYcjG0q/e5hJ9I9+7FKJhWNpY=";
};
nativeBuildInputs = [
poetry-core
gobject-introspection
];
buildInputs = [ gtk3 ];
propagatedBuildInputs = [
pycairo
pygobject3
typing-extensions
];
pythonImportsCheck = [ "gaphas" ];
meta = {
description = "GTK+ based diagramming widget";
homepage = "https://github.com/gaphor/gaphas";
changelog = "https://github.com/gaphor/gaphas/releases/tag/${version}";
license = lib.licenses.asl20;
maintainers = [ ];
};
}