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";
|
2017-08-24 18:34:20 +01:00
|
|
|
version = "1.3.1";
|
2017-06-21 19:55:56 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-08-24 18:34:20 +01:00
|
|
|
sha256 = "7c294cbc9d88946be671cc0d8602aac176d8c56695c0a7d871eadea75a958408";
|
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";
|
|
|
|
homepage = https://github.com/pygraphviz/pygraphviz;
|
|
|
|
license = licenses.bsd3;
|
2018-04-06 09:57:19 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-06-21 19:55:56 +01:00
|
|
|
};
|
|
|
|
}
|