3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.pybtex: init at 0.21

This commit is contained in:
Maxime Dénès 2018-03-07 20:18:49 +01:00 committed by Vincent Laporte
parent 0450c596f0
commit 5210122969
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, latexcodec, pyyaml }:
buildPythonPackage rec {
version = "0.21";
pname = "pybtex";
doCheck = false;
propagatedBuildInputs = [ latexcodec pyyaml ];
src = fetchPypi {
inherit version pname;
sha256 = "00300j8dn5pxq4ndxmfmbmycg2znawkqs49val2x6jlmfiy6r2mg";
};
meta = {
homepage = "https://pybtex.org/";
description = "A BibTeX-compatible bibliography processor written in Python";
license = stdenv.lib.licenses.mit;
};
}

View file

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