python311Packages.lxml-stubs: 0.4.0 -> 0.5.1 (#290694)

This commit is contained in:
Fabian Affolter 2024-02-28 17:33:42 +01:00 committed by GitHub
parent 96990c69fd
commit 6f28a303df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,35 +1,42 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pytestCheckHook
, pytest-mypy-plugins
, lxml
, pytest-mypy-plugins
, pytestCheckHook
, setuptools
}:
buildPythonPackage rec {
pname = "lxml-stubs";
version = "0.4.0";
version = "0.5.1";
pyproject = true;
src = fetchFromGitHub {
owner = "lxml";
repo = "lxml-stubs";
rev = version;
hash = "sha256-RRH/taLtgaXOl0G/ve2Ad7Xy8WRDUG2/k26EFMv1PRM=";
rev = "refs/tags/${version}";
hash = "sha256-OwaPnCr0vylhdAvMMUfGV6DjZEh7Q71pgMOt66urg5I=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
lxml
];
nativeCheckInputs = [
pytestCheckHook
pytest-mypy-plugins
];
disabledTests = [
# Output difference, https://github.com/lxml/lxml-stubs/issues/101
"etree_element_iterchildren"
];
meta = with lib; {
description = "Type stubs for the lxml package";
homepage = "https://github.com/lxml/lxml-stubs";