2019-01-18 00:33:34 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, substituteAll, graphviz
|
2017-06-21 19:55:56 +01:00
|
|
|
, pkgconfig, doctest-ignore-unicode, mock, nose }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pygraphviz";
|
2020-08-16 18:31:11 +01:00
|
|
|
version = "1.6";
|
2017-06-21 19:55:56 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-16 18:31:11 +01:00
|
|
|
sha256 = "411ae84a5bc313e3e1523a1cace59159f512336318a510573b47f824edef8860";
|
2019-06-11 23:03:00 +01:00
|
|
|
extension = "zip";
|
2017-06-21 19:55:56 +01:00
|
|
|
};
|
|
|
|
|
2019-01-18 00:33:34 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ graphviz ];
|
|
|
|
checkInputs = [ doctest-ignore-unicode mock nose ];
|
2017-06-21 19:55:56 +01:00
|
|
|
|
2018-12-04 10:41:23 +00:00
|
|
|
patches = [
|
|
|
|
# pygraphviz depends on graphviz being in PATH. This patch always prepends
|
|
|
|
# graphviz to PATH.
|
2019-01-18 00:33:34 +00:00
|
|
|
(substituteAll {
|
|
|
|
src = ./graphviz-path.patch;
|
|
|
|
inherit graphviz;
|
|
|
|
})
|
2018-12-04 10:41:23 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
# The tests are currently failing because of a bug in graphviz 2.40.1.
|
|
|
|
# Upstream does not want to skip the relevant tests:
|
|
|
|
# https://github.com/pygraphviz/pygraphviz/pull/129
|
2017-06-21 19:55:56 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Python interface to Graphviz graph drawing package";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/pygraphviz/pygraphviz";
|
2017-06-21 19:55:56 +01:00
|
|
|
license = licenses.bsd3;
|
2019-02-20 18:52:48 +00:00
|
|
|
maintainers = with maintainers; [ matthiasbeyer ];
|
2017-06-21 19:55:56 +01:00
|
|
|
};
|
|
|
|
}
|