blob: b9d6243a86576b3eae7533e9e81b84d7dda91d5d (
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
30
31
32
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "types-deprecated";
version = "1.3.1.20251101";
pyproject = true;
src = fetchPypi {
pname = "types_deprecated";
inherit version;
hash = "sha256-8ALSZrcyAfRuxvxxLB8BYGfsbLRDV1Wc21DIawEJUac=";
};
build-system = [ setuptools ];
# Modules has no tests
doCheck = false;
pythonImportsCheck = [ "deprecated-stubs" ];
meta = {
description = "Typing stubs for Deprecated";
homepage = "https://pypi.org/project/types-Deprecated/";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
|