1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, sphinx
5, pyenchant
6, pbr
7}:
8
9buildPythonPackage rec {
10 pname = "sphinxcontrib-spelling";
11 version = "4.2.0";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "44a9445b237ade895ae1fccbe6f41422489b1ffb2a026c1b78b0c1c1c229f9bf";
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}