mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
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:
commit
162d296e87
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user