nixpkgs/pkgs/development/python-modules/xdot/default.nix

24 lines
653 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, isPy3k
, wrapGAppsHook, gobject-introspection, pygobject3, graphviz, gtk3 }:
2018-02-19 22:25:14 +00:00
buildPythonPackage rec {
pname = "xdot";
2020-11-29 14:04:46 +00:00
version = "1.2";
2018-02-19 22:25:14 +00:00
src = fetchPypi {
inherit pname version;
2020-11-29 14:04:46 +00:00
sha256 = "3df91e6c671869bd2a6b2a8883fa3476dbe2ba763bd2a7646cf848a9eba71b70";
2018-02-19 22:25:14 +00:00
};
disabled = !isPy3k;
2018-02-19 22:25:14 +00:00
nativeBuildInputs = [ wrapGAppsHook ];
propagatedBuildInputs = [ gobject-introspection pygobject3 graphviz gtk3 ];
2018-02-19 22:25:14 +00:00
meta = with lib; {
description = "An interactive viewer for graphs written in Graphviz's dot";
homepage = "https://github.com/jrfonseca/xdot.py";
2018-02-19 22:25:14 +00:00
license = licenses.lgpl3Plus;
};
}