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 ]; }; }