about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/types-tqdm/default.nix
blob: b8e7b096c835742db9982b00e6b6ecc0765cd819 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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 ];
  };
}