Merge pull request #220238 from centromere/types-ujson

python3Packages.types-ujson: init at 5.7.0.1
This commit is contained in:
Fabian Affolter
2023-03-13 10:44:45 +01:00
committed by GitHub
2 changed files with 30 additions and 0 deletions
@@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "types-ujson";
version = "5.7.0.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-VDUaYuwbZVDvsXr2PvfwwA0O+pwJnefaXGJ+HvooBVM=";
};
doCheck = false;
pythonImportsCheck = [
"ujson-stubs"
];
meta = with lib; {
description = "Typing stubs for ujson";
homepage = "https://github.com/python/typeshed";
license = licenses.asl20;
maintainers = with maintainers; [ centromere ];
};
}
+2
View File
@@ -11978,6 +11978,8 @@ self: super: with self; {
types-typed-ast = callPackage ../development/python-modules/types-typed-ast { };
types-ujson = callPackage ../development/python-modules/types-ujson { };
types-urllib3 = callPackage ../development/python-modules/types-urllib3 { };
typesentry = callPackage ../development/python-modules/typesentry { };