pythonPackages.pydotplus: init at 2.0.2

This commit is contained in:
Ashley Gillman 2018-01-16 13:29:42 +10:00 committed by Frederik Rietdijk
parent 0b47691400
commit 0a87eee6a0
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, pyparsing
, graphviz
}:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "pydotplus";
version = "2.0.2";
src = fetchPypi {
inherit pname version;
sha256 = "1i05cnk3yh722fdyaq0asr7z9xf7v7ikbmnpxa8j6pdqx6g5xs4i";
};
propagatedBuildInputs = [
pyparsing
graphviz
];
meta = {
homepage = https://code.google.com/p/pydot/;
description = "An improved version of the old pydot project that provides a Python Interface to Graphvizs Dot language";
};
}

View File

@ -6271,6 +6271,8 @@ in {
inherit (pkgs.stdenv) mkDerivation;
};
pydotplus = callPackage ../development/python-modules/pydotplus { };
pyphen = callPackage ../development/python-modules/pyphen {};
pypoppler = buildPythonPackage rec {