nixpkgs/pkgs/development/python-modules/pybtex/default.nix

21 lines
512 B
Nix
Raw Normal View History

2018-03-07 19:18:49 +00:00
{ stdenv, buildPythonPackage, fetchPypi, latexcodec, pyyaml }:
buildPythonPackage rec {
2019-01-17 21:08:56 +00:00
version = "0.22.2";
2018-03-07 19:18:49 +00:00
pname = "pybtex";
doCheck = false;
propagatedBuildInputs = [ latexcodec pyyaml ];
src = fetchPypi {
inherit version pname;
2019-01-17 21:08:56 +00:00
sha256 = "00816e5f8570609d8ce3360cd23916bd3e50428a3508127578fdb4dc2b731c1c";
2018-03-07 19:18:49 +00:00
};
meta = {
homepage = "https://pybtex.org/";
description = "A BibTeX-compatible bibliography processor written in Python";
license = stdenv.lib.licenses.mit;
};
}