mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
46 lines
821 B
Nix
46 lines
821 B
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, pythonOlder
|
||
|
, fetchPypi
|
||
|
, poetry-core
|
||
|
, gobject-introspection
|
||
|
, gtk3
|
||
|
, pycairo
|
||
|
, pygobject3
|
||
|
, typing-extensions
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "gaphas";
|
||
|
version = "3.1.9";
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
format = "pyproject";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "sha256-S6cRsfqXYM4mSVSs2M8fET5ShFClKkGkod2w2y6F2gc=";
|
||
|
};
|
||
|
|
||
|
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;
|
||
|
};
|
||
|
}
|