pydot_ng: init at 1.0.0

This commit is contained in:
Ben Darwin 2016-03-30 19:30:09 -04:00
parent 254e2cc982
commit aff6c3b77d

View File

@ -16721,6 +16721,30 @@ in modules // {
};
};
pydot_ng = buildPythonPackage rec {
name = "pydot_ng-1.0.0";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/p/pydot-ng/${name}.tar.gz";
sha256 = "0h8k8wlzvnb40v4js7afgfyhp3wasmb1kg4gr6z7ck63iv8fq864";
};
buildInputs = [ self.pytest self.unittest2 ];
propagatedBuildInputs = [ pkgs.graphviz self.pyparsing ];
checkPhase = ''
mkdir test/my_tests
py.test test
'';
meta = {
homepage = "https://pypi.python.org/pypi/pydot-ng";
description = "Python 3-compatible update of pydot, a Python interface to Graphviz's Dot";
license = licenses.mit;
maintainers = [ maintainers.bcdarwin ];
};
};
pyelasticsearch = buildPythonPackage (rec {
name = "pyelasticsearch-1.4";