Merge pull request #171125 from r-ryantm/auto-update/python3.10-sphinxcontrib-spelling

python310Packages.sphinxcontrib-spelling: 7.3.2 -> 7.3.3
This commit is contained in:
Fabian Affolter 2022-05-02 08:14:39 +02:00 committed by GitHub
commit 3e707adfab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,24 +10,38 @@
buildPythonPackage rec {
pname = "sphinxcontrib-spelling";
version = "7.3.2";
version = "7.3.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "9d66dc4990749c5ac52e7eaf17e82f4dc6b4aff6515d26bbf48821829d41bd02";
hash = "sha256-OBnRJinZXgyQkiT6QLRipn4K2zIdUCg9f8DRFobIrH4=";
};
propagatedBuildInputs = [ sphinx pyenchant pbr ]
++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
nativeBuildInputs = [
pbr
];
propagatedBuildInputs = [
sphinx
pyenchant
] ++ lib.optionals (pythonOlder "3.8") [
importlib-metadata
];
# No tests included
doCheck = false;
pythonImportsCheck = [
"sphinxcontrib.spelling"
];
meta = with lib; {
description = "Sphinx spelling extension";
homepage = "https://bitbucket.org/dhellmann/sphinxcontrib-spelling";
maintainers = with maintainers; [ ];
homepage = "https://github.com/sphinx-contrib/spelling";
license = licenses.bsd2;
maintainers = with maintainers; [ ];
};
}