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.2"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "1501befb0fdf1d1c29a800fdbf4ef5dc5369377300ddbdd16d2cd40e54c6eefc"; 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}