Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 512 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, latexcodec, pyyaml }: 2 3buildPythonPackage rec { 4 version = "0.22.2"; 5 pname = "pybtex"; 6 7 doCheck = false; 8 propagatedBuildInputs = [ latexcodec pyyaml ]; 9 10 src = fetchPypi { 11 inherit version pname; 12 sha256 = "00816e5f8570609d8ce3360cd23916bd3e50428a3508127578fdb4dc2b731c1c"; 13 }; 14 15 meta = { 16 homepage = "https://pybtex.org/"; 17 description = "A BibTeX-compatible bibliography processor written in Python"; 18 license = stdenv.lib.licenses.mit; 19 }; 20}