blob: cdbfe471ff9e910bf881dffa7292390588e3cbbe (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "types-toml";
version = "0.10.8.20240310";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-PUFQEwKXJDamuLI5yFCyZollfiUoG0j/DsBjRbiDAzE=";
};
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [ "toml-stubs" ];
meta = {
description = "Typing stubs for toml";
homepage = "https://github.com/python/typeshed";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
|