python312Packages.types-tqdm: 4.67.0.20241221 -> 4.67.0.20250301 (#388311)

This commit is contained in:
Gaétan Lepage
2025-03-09 15:42:34 +01:00
committed by GitHub
@@ -1,7 +1,6 @@
{
lib,
buildPythonPackage,
pythonOlder,
fetchPypi,
setuptools,
types-requests,
@@ -9,15 +8,13 @@
buildPythonPackage rec {
pname = "types-tqdm";
version = "4.67.0.20241221";
version = "4.67.0.20250301";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "types_tqdm";
inherit version;
hash = "sha256-5WBGYxBWkiOFq+ia6xivVhH0cerdeRigrX802EzUyMw=";
hash = "sha256-XomjitibhngjNo65fZ+Q0vxpgGuwVd3mJxagXaYrXg0=";
};
build-system = [ setuptools ];
@@ -27,10 +24,10 @@ buildPythonPackage rec {
# This package does not have tests.
doCheck = false;
meta = with lib; {
meta = {
description = "Typing stubs for tqdm";
homepage = "https://pypi.org/project/types-tqdm/";
license = licenses.asl20;
maintainers = with maintainers; [ GaetanLepage ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}