Merge pull request #270435 from GaetanLepage/types-tqdm

python311Packages.types-tqdm: init at 4.66.0.5
This commit is contained in:
Nick Cao 2023-11-28 09:20:53 -05:00 committed by GitHub
commit bdba516867
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, setuptools
, wheel
}:
buildPythonPackage rec {
pname = "types-tqdm";
version = "4.66.0.5";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-dL1+RpI4wogWMA9yqbcT0CA29rVXc0YWQwrbe350ESw=";
};
nativeBuildInputs = [
setuptools
wheel
];
# This package does not have tests.
doCheck = false;
meta = with lib; {
description = "Typing stubs for tqdm";
homepage = "https://pypi.org/project/types-tqdm/";
license = licenses.asl20;
maintainers = with maintainers; [ GaetanLepage ];
};
}

View File

@ -15183,6 +15183,8 @@ self: super: with self; {
types-toml = callPackage ../development/python-modules/types-toml { };
types-tqdm = callPackage ../development/python-modules/types-tqdm { };
types-typed-ast = callPackage ../development/python-modules/types-typed-ast { };
types-ujson = callPackage ../development/python-modules/types-ujson { };