ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / xdot / default.nix
bloba07235006c9a0f06bcd0be622eca2d90b07d8c6d
1 { lib, buildPythonPackage, fetchPypi, isPy3k, python, xvfb-run
2 , wrapGAppsHook, gobject-introspection, pygobject3, graphviz, gtk3, numpy }:
4 buildPythonPackage rec {
5   pname = "xdot";
6   version = "1.2";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "3df91e6c671869bd2a6b2a8883fa3476dbe2ba763bd2a7646cf848a9eba71b70";
11   };
13   disabled = !isPy3k;
14   nativeBuildInputs = [ wrapGAppsHook ];
15   propagatedBuildInputs = [ gobject-introspection pygobject3 graphviz gtk3 numpy ];
16   checkInputs = [ xvfb-run ];
18   postInstall = ''
19     wrapProgram "$out/bin/xdot" --prefix PATH : "${lib.makeBinPath [ graphviz ]}"
20   '';
22   checkPhase = ''
23     xvfb-run -s '-screen 0 800x600x24' ${python.interpreter} nix_run_setup test
24   '';
26   # https://github.com/NixOS/nixpkgs/pull/107872#issuecomment-752175866
27   # cannot import name '_gi' from partially initialized module 'gi' (most likely due to a circular import)
28   doCheck = false;
30   meta = with lib; {
31     description = "An interactive viewer for graphs written in Graphviz's dot";
32     homepage = "https://github.com/jrfonseca/xdot.py";
33     license = licenses.lgpl3Plus;
34   };