pythonPackages.pybtex: init at 0.21
This commit is contained in:
committed by
Vincent Laporte
parent
0450c596f0
commit
5210122969
20
pkgs/development/python-modules/pybtex/default.nix
Normal file
20
pkgs/development/python-modules/pybtex/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user