about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pydotplus/default.nix
blob: 03b594a131a0b98db003460f0b24014df1c6065e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv
, buildPythonPackage
, fetchPypi
, pyparsing
, graphviz
}:

buildPythonPackage rec {
  pname = "pydotplus";
  version = "2.0.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1i05cnk3yh722fdyaq0asr7z9xf7v7ikbmnpxa8j6pdqx6g5xs4i";
  };

  propagatedBuildInputs = [
    pyparsing
    graphviz
  ];

  meta = with stdenv.lib; {
    homepage = https://github.com/erocarrera/pydot;
    description = "An improved version of the old pydot project that provides a Python Interface to Graphviz’s Dot language";
    license = licenses.mit;
    maintainers = with maintainers; [ ashgillman ];
  };
}