3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/gaphas/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
821 B
Nix
Raw Normal View History

2021-11-01 00:17:04 +00:00
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, poetry-core
, gobject-introspection
, gtk3
, pycairo
, pygobject3
, typing-extensions
}:
buildPythonPackage rec {
pname = "gaphas";
version = "3.6.0";
2021-11-01 00:17:04 +00:00
disabled = pythonOlder "3.7";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-yleYbAJdDVzZrMQ3izi9UX3Ji1vIuQDc+RK5+wzrMi4=";
2021-11-01 00:17:04 +00:00
};
nativeBuildInputs = [
poetry-core
];
buildInputs = [ gobject-introspection gtk3 ];
propagatedBuildInputs = [
pycairo
pygobject3
typing-extensions
];
pythonImportsCheck = [ "gaphas" ];
meta = with lib; {
description = "GTK+ based diagramming widget";
maintainers = with maintainers; [ wolfangaukang ];
homepage = "https://github.com/gaphor/gaphas";
license = licenses.asl20;
};
}