Merge pull request #312025 from r-ryantm/auto-update/python311Packages.types-ujson

python311Packages.types-ujson: 5.9.0.0 -> 5.10.0.20240515
This commit is contained in:
Fabian Affolter 2024-05-16 10:43:48 +02:00 committed by GitHub
commit 162d296e87
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,23 +1,26 @@
{ lib
, buildPythonPackage
, fetchPypi
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "types-ujson";
version = "5.9.0.0";
format = "setuptools";
version = "5.10.0.20240515";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-fnBCRU3HzX8xsJxCDXyvNrk9ML30uNuTeRvQVhcT0Bc=";
hash = "sha256-zq5xJ/Da/kr13Q7PmO4T6ddZUe+WO1xam36pLg1x8Nc=";
};
build-system = [ setuptools ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"ujson-stubs"
];
pythonImportsCheck = [ "ujson-stubs" ];
meta = with lib; {
description = "Typing stubs for ujson";