File tree Expand file tree Collapse file tree
development/python-modules/types-ujson Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff 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 { } ;
You can’t perform that action at this time.
0 commit comments