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