Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 20 lines 507 B view raw
1{ lib, buildPythonPackage, fetchPypi, docutils, pybtex, six }: 2 3buildPythonPackage rec { 4 version = "1.0.0"; 5 pname = "pybtex-docutils"; 6 7 doCheck = false; 8 buildInputs = [ docutils pybtex six ]; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "cead6554b4af99c287dd29f38b1fa152c9542f56a51cb6cbc3997c95b2725b2e"; 13 }; 14 15 meta = with lib; { 16 description = "A docutils backend for pybtex"; 17 homepage = "https://github.com/mcmtroffaes/pybtex-docutils"; 18 license = licenses.mit; 19 }; 20}