Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 latexcodec, 6 pyyaml, 7 setuptools, 8}: 9 10buildPythonPackage rec { 11 version = "0.24.0"; 12 format = "setuptools"; 13 pname = "pybtex"; 14 15 doCheck = false; 16 pythonImportsCheck = [ "pybtex" ]; 17 18 propagatedBuildInputs = [ 19 latexcodec 20 pyyaml 21 setuptools 22 ]; 23 24 src = fetchPypi { 25 inherit version pname; 26 sha256 = "818eae35b61733e5c007c3fcd2cfb75ed1bc8b4173c1f70b56cc4c0802d34755"; 27 }; 28 29 meta = with lib; { 30 homepage = "https://pybtex.org/"; 31 description = "BibTeX-compatible bibliography processor written in Python"; 32 license = licenses.mit; 33 }; 34}