Merge pull request #307773 from fabaff/typeshed-client-bump

python312Packages.typeshed-client: refactor
This commit is contained in:
Fabian Affolter
2024-04-30 08:48:02 +02:00
committed by GitHub
@@ -1,10 +1,12 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, importlib-resources
, pytestCheckHook
, pythonOlder
, setuptools
{
lib,
buildPythonPackage,
fetchFromGitHub,
importlib-resources,
pytestCheckHook,
pythonOlder,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
@@ -12,7 +14,7 @@ buildPythonPackage rec {
version = "2.5.1";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "JelleZijlstra";
@@ -21,25 +23,18 @@ buildPythonPackage rec {
hash = "sha256-lITreXYn/ZOc1fF2Sqcn8UDrZAjWYfjFSEaAxqTHb4s=";
};
nativeBuildInputs = [
setuptools
];
build-system = [ setuptools ];
propagatedBuildInputs = [
dependencies = [
importlib-resources
typing-extensions
];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"typeshed_client"
];
pythonImportsCheck = [ "typeshed_client" ];
pytestFlagsArray = [
"tests/test.py"
];
pytestFlagsArray = [ "tests/test.py" ];
meta = with lib; {
description = "Retrieve information from typeshed and other typing stubs";