blob: 6c66effdd4e62fabea954875214a7cc0b4867140 (
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-ujson";
version = "5.10.0.20250822";
pyproject = true;
src = fetchPypi {
pname = "types_ujson";
inherit version;
hash = "sha256-CnlVWOH3hTI3PPPwPzWx8IvGDVLZJBh7l5le41l7oAY=";
};
build-system = [ setuptools ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "ujson-stubs" ];
meta = {
description = "Typing stubs for ujson";
homepage = "https://github.com/python/typeshed";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ centromere ];
};
}
|