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
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;
};
}