From 83b5ac844c1c35d6cf95c493727b0a4a1c4d11b4 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 8 Mar 2025 22:20:27 +0000 Subject: [PATCH] python312Packages.types-tqdm: 4.67.0.20241221 -> 4.67.0.20250301 --- .../python-modules/types-tqdm/default.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/types-tqdm/default.nix b/pkgs/development/python-modules/types-tqdm/default.nix index 3ea50d5fb179..162025c961e1 100644 --- a/pkgs/development/python-modules/types-tqdm/default.nix +++ b/pkgs/development/python-modules/types-tqdm/default.nix @@ -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 ]; }; }