Files
nixpkgs/pkgs/development/python-modules/restview/default.nix
T
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

51 lines
840 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, docutils
, readme_renderer
, packaging
, pygments
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "restview";
version = "3.0.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-K5iWEKrtL9Qtpk9s3FOc8+5wzjcLy6hy23JCGtUV3R4=";
};
propagatedBuildInputs = [
docutils
readme_renderer
packaging
pygments
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"restview"
];
disabledTests = [
# Tests are comparing output
"rest_to_html"
];
meta = with lib; {
description = "ReStructuredText viewer";
homepage = "https://mg.pov.lt/restview/";
license = licenses.gpl3Only;
maintainers = with maintainers; [ koral ];
};
}