mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
Merge pull request #270435 from GaetanLepage/types-tqdm
python311Packages.types-tqdm: init at 4.66.0.5
This commit is contained in:
commit
bdba516867
34
pkgs/development/python-modules/types-tqdm/default.nix
Normal file
34
pkgs/development/python-modules/types-tqdm/default.nix
Normal file
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
@ -15183,6 +15183,8 @@ self: super: with self; {
|
||||
|
||||
types-toml = callPackage ../development/python-modules/types-toml { };
|
||||
|
||||
types-tqdm = callPackage ../development/python-modules/types-tqdm { };
|
||||
|
||||
types-typed-ast = callPackage ../development/python-modules/types-typed-ast { };
|
||||
|
||||
types-ujson = callPackage ../development/python-modules/types-ujson { };
|
||||
|
Loading…
Reference in New Issue
Block a user