33afbf39f6
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.
41 lines
810 B
Nix
41 lines
810 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, isPy27
|
|
, pytestCheckHook
|
|
, pythonAtLeast
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sgmllib3k";
|
|
version = "1.0.0";
|
|
format = "setuptools";
|
|
|
|
disabled = isPy27;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hsoft";
|
|
repo = "sgmllib";
|
|
rev = "799964676f35349ca2dd04503e34c2b3ad522c0d";
|
|
sha256 = "0bzf6pv85dzfxfysm6zbj8m40hp0xzr9h8qlk4hp3nmy88rznqvr";
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = lib.optionals (pythonAtLeast "3.10") [
|
|
"test_declaration_junk_chars"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"sgmllib"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://pypi.org/project/sgmllib3k/";
|
|
description = "Python 3 port of sgmllib";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ lovesegfault ];
|
|
};
|
|
}
|