mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
28 lines
549 B
Nix
28 lines
549 B
Nix
|
{ 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";
|
|||
|
};
|
|||
|
}
|