blob: b9ee469c1c78c4295931ef9e3fd8a664563b60e4 (
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-pyyaml";
version = "6.0.12.20250516";
pyproject = true;
src = fetchPypi {
pname = "types_pyyaml";
inherit version;
hash = "sha256-nyGnAhb8D6GyFqgXbbX54K9us10vKTKsuHaJ0Dpb9ro=";
};
build-system = [ setuptools ];
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [ "yaml-stubs" ];
meta = {
description = "Typing stubs for PyYAML";
homepage = "https://github.com/python/typeshed";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dnr ];
};
}
|