summary refs log tree commit diff
path: root/pkgs/development/python-modules/xdot/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/xdot/default.nix')
-rw-r--r--pkgs/development/python-modules/xdot/default.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/pkgs/development/python-modules/xdot/default.nix b/pkgs/development/python-modules/xdot/default.nix
deleted file mode 100644
index 526376a41632..000000000000
--- a/pkgs/development/python-modules/xdot/default.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ lib, buildPythonPackage, fetchPypi
-, wrapGAppsHook, gobjectIntrospection, pygobject3, graphviz, gnome3 }:
-
-buildPythonPackage rec {
-  pname = "xdot";
-  version = "0.9";
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "01v9vmgdxz1q2m2vq2b4aqx4ycw7grc0l4is673ygvyg9rk02dx3";
-  };
-
-  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;
-  };
-}