mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
python311Packages.lxml-stubs: 0.4.0 -> 0.5.1 (#290694)
This commit is contained in:
parent
96990c69fd
commit
6f28a303df
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user