pythonPackages.pydotplus: init at 2.0.2
This commit is contained in:
parent
0b47691400
commit
0a87eee6a0
27
pkgs/development/python-modules/pydotplus/default.nix
Normal file
27
pkgs/development/python-modules/pydotplus/default.nix
Normal 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 Graphviz’s Dot language";
|
||||
};
|
||||
}
|
@ -6271,6 +6271,8 @@ in {
|
||||
inherit (pkgs.stdenv) mkDerivation;
|
||||
};
|
||||
|
||||
pydotplus = callPackage ../development/python-modules/pydotplus { };
|
||||
|
||||
pyphen = callPackage ../development/python-modules/pyphen {};
|
||||
|
||||
pypoppler = buildPythonPackage rec {
|
||||
|
Loading…
Reference in New Issue
Block a user