blob: 1eb6f6218491c5aeb2425f200b25ca85fc5c8c8a (
plain)
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
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "types-retry";
version = "0.9.9.20250322";
format = "setuptools";
src = fetchPypi {
pname = "types_retry";
inherit version;
hash = "sha256-LqpvS4MsGHEhBWmIu+bS0Lb06wNjH9yXUuKsKAL3tyY=";
};
# Modules doesn't have tests
doCheck = false;
pythonImportsCheck = [ "retry-stubs" ];
meta = {
description = "Typing stubs for retry";
homepage = "https://github.com/python/typeshed";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
|