Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, six 5}: 6 7buildPythonPackage rec { 8 pname = "sphinxcontrib-websupport"; 9 version = "1.1.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "9de47f375baf1ea07cdb3436ff39d7a9c76042c10a769c52353ec46e4e8fc3b9"; 14 }; 15 16 propagatedBuildInputs = [ six ]; 17 18 doCheck = false; 19 20 meta = { 21 description = "Sphinx API for Web Apps"; 22 homepage = http://sphinx-doc.org/; 23 license = lib.licenses.bsd2; 24 }; 25}