Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 30 lines 616 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, sphinx 5, pyenchant 6, pbr 7}: 8 9buildPythonPackage rec { 10 pname = "sphinxcontrib-spelling"; 11 version = "4.2.1"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "7bcbaabef7aa9c176b81d960b20d0f67817ccea5e098968c366d2db4ad76d476"; 16 }; 17 18 propagatedBuildInputs = [ sphinx pyenchant pbr ]; 19 20 # No tests included 21 doCheck = false; 22 23 meta = with stdenv.lib; { 24 description = "Sphinx spelling extension"; 25 homepage = https://bitbucket.org/dhellmann/sphinxcontrib-spelling; 26 maintainers = with maintainers; [ nand0p ]; 27 license = licenses.bsd2; 28 }; 29 30}