blob: c872d636a70185d57192f88bf9621568158d249f (
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
33
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "types-awscrt";
version = "0.31.0";
pyproject = true;
src = fetchPypi {
pname = "types_awscrt";
inherit (finalAttrs) version;
hash = "sha256-qotCFIrwhHvhTiuOo2N6NRj/qwOPjTvnCDlQ886H0/8=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "awscrt-stubs" ];
# Module has no tests
doCheck = false;
meta = {
description = "Type annotations and code completion for awscrt";
homepage = "https://github.com/youtype/types-awscrt";
changelog = "https://github.com/youtype/types-awscrt/releases/tag/${finalAttrs.version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
})
|