Merge pull request #168350 from dotlambda/graphviz-0.9.8
python3Packages.graphviz: 0.19.1 -> 0.20
This commit is contained in:
commit
4c3bcf7f4d
2 changed files with 5 additions and 5 deletions
|
@ -27,8 +27,7 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace pyproject.toml \
|
substituteInPlace pyproject.toml \
|
||||||
--replace 'jinja2 = "^2.10"' 'jinja2 = "*"' \
|
--replace 'graphviz = ">=0.13.2,<0.20.0"' 'graphviz = "*"'
|
||||||
--replace 'graphviz = ">=0.13.2,<0.17.0"' 'graphviz = "*"'
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
|
|
|
@ -16,16 +16,16 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "graphviz";
|
pname = "graphviz";
|
||||||
version = "0.19.1";
|
version = "0.20";
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
# patch does not apply to PyPI tarball due to different line endings
|
# patch does not apply to PyPI tarball due to different line endings
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "xflr6";
|
owner = "xflr6";
|
||||||
repo = "graphviz";
|
repo = "graphviz";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-pE1lsx/r/BjvW5W2niDx/UeRXxx4kvCyHzAUAG3bdGc=";
|
hash = "sha256-QyZwXxRbcMushxh/Ypy+v4FOTM4H1u5b7IZMSVgLyEs=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
@ -65,6 +65,7 @@ buildPythonPackage rec {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Simple Python interface for Graphviz";
|
description = "Simple Python interface for Graphviz";
|
||||||
homepage = "https://github.com/xflr6/graphviz";
|
homepage = "https://github.com/xflr6/graphviz";
|
||||||
|
changelog = "https://github.com/xflr6/graphviz/blob/${src.rev}/CHANGES.rst";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ dotlambda ];
|
maintainers = with maintainers; [ dotlambda ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue