06145c9c81
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-xdot/versions
24 lines
656 B
Nix
24 lines
656 B
Nix
{ lib, buildPythonPackage, fetchPypi, isPy3k
|
|
, wrapGAppsHook, gobjectIntrospection, pygobject3, graphviz, gnome3 }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "xdot";
|
|
version = "1.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "18a2ri8vggaxy7im1x9hki34v519y5jy4n07zpqq5br9syb7h1ky";
|
|
};
|
|
|
|
disabled = !isPy3k;
|
|
|
|
nativeBuildInputs = [ wrapGAppsHook ];
|
|
propagatedBuildInputs = [ gobjectIntrospection pygobject3 graphviz gnome3.gtk ];
|
|
|
|
meta = with lib; {
|
|
description = "xdot.py is an interactive viewer for graphs written in Graphviz's dot";
|
|
homepage = https://github.com/jrfonseca/xdot.py;
|
|
license = licenses.lgpl3Plus;
|
|
};
|
|
}
|