pythonPackages.pybtex-docutils: init at 0.2.1

This commit is contained in:
Maxime Dénès 2018-03-07 20:34:17 +01:00 committed by Vincent Laporte
parent 5210122969
commit e8a588894e
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, buildPythonPackage, fetchPypi, docutils, pybtex, six }:
buildPythonPackage rec {
version = "0.2.1";
pname = "pybtex-docutils";
doCheck = false;
buildInputs = [ docutils pybtex six ];
src = fetchPypi {
inherit pname version;
sha256 = "0dqk4lplij7rbqqi4dbpw3wzr4wj08ysswvdibls6s0x3ij7bc74";
};
meta = {
description = "A docutils backend for pybtex";
homepage = "https://github.com/mcmtroffaes/pybtex-docutils";
license = stdenv.lib.licenses.mit;
};
}

View File

@ -5970,6 +5970,8 @@ in {
pybtex = callPackage ../development/python-modules/pybtex {};
pybtex-docutils = callPackage ../development/python-modules/pybtex-docutils {};
pycallgraph = buildPythonPackage rec {
name = "pycallgraph-${version}";
version = "1.0.1";