nixpkgs/pkgs/development/python-modules/doc8/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

59 lines
993 B
Nix

{ lib
, buildPythonPackage
, chardet
, docutils
, fetchPypi
, pbr
, pygments
, pytestCheckHook
, pythonOlder
, restructuredtext_lint
, setuptools-scm
, stevedore
}:
buildPythonPackage rec {
pname = "doc8";
version = "1.1.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-2XqT6PWi78RxOggEZX3trYN0XMpM0diN6Rhvd/l3YAQ=";
};
nativeBuildInputs = [
setuptools-scm
];
buildInputs = [
pbr
];
propagatedBuildInputs = [
docutils
chardet
stevedore
restructuredtext_lint
pygments
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"doc8"
];
meta = with lib; {
description = "Style checker for Sphinx (or other) RST documentation";
homepage = "https://github.com/pycqa/doc8";
changelog = "https://github.com/PyCQA/doc8/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ onny ];
};
}