Skip to content

Commit 0572ebb

Browse files
committed
python3Packages.types-ujson: init at 5.7.0.1
1 parent 55544a3 commit 0572ebb

2 files changed

Lines changed: 30 additions & 0 deletions

File tree

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{ lib
2+
, buildPythonPackage
3+
, fetchPypi
4+
}:
5+
6+
buildPythonPackage rec {
7+
pname = "types-ujson";
8+
version = "5.7.0.1";
9+
format = "setuptools";
10+
11+
src = fetchPypi {
12+
inherit pname version;
13+
hash = "sha256-VDUaYuwbZVDvsXr2PvfwwA0O+pwJnefaXGJ+HvooBVM=";
14+
};
15+
16+
doCheck = false;
17+
18+
pythonImportsCheck = [
19+
"ujson-stubs"
20+
];
21+
22+
meta = with lib; {
23+
description = "Typing stubs for ujson";
24+
homepage = "https://github.com/python/typeshed";
25+
license = licenses.asl20;
26+
maintainers = with maintainers; [ centromere ];
27+
};
28+
}

pkgs/top-level/python-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11960,6 +11960,8 @@ self: super: with self; {
1196011960

1196111961
types-typed-ast = callPackage ../development/python-modules/types-typed-ast { };
1196211962

11963+
types-ujson = callPackage ../development/python-modules/types-ujson { };
11964+
1196311965
types-urllib3 = callPackage ../development/python-modules/types-urllib3 { };
1196411966

1196511967
typesentry = callPackage ../development/python-modules/typesentry { };

0 commit comments

Comments
 (0)