Unverified Commit df27ab6f authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

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

parents 7a5e696c 83b5ac84
Loading
Loading
Loading
Loading
+5 −8
Original line number Diff line number Diff line
{
  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 ];
  };
}