Merge pull request #210789 from fabaff/simplejson-bump

python310Packages.simplejson: 3.18.0 -> 3.18.1
This commit is contained in:
Fabian Affolter
2023-01-19 00:09:30 +01:00
committed by GitHub
@@ -1,19 +1,23 @@
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, stdenv
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "simplejson";
version = "3.18.0";
version = "3.18.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "sha256-X1lD/kCbKDPPgpr2deoVbC5LADqBlNZHvDg7206E9ZE=";
hash = "sha256-m5V1wmqkPxZBH25vWajztwa3HF4KtH+HXXs4TCecTm8=";
};
checkInputs = [
@@ -22,7 +26,9 @@ buildPythonPackage rec {
doCheck = !stdenv.isDarwin;
pythonImportsCheck = [ "simplejson" ];
pythonImportsCheck = [
"simplejson"
];
meta = with lib; {
description = "Extensible JSON encoder/decoder for Python";
@@ -33,6 +39,7 @@ buildPythonPackage rec {
for unicode characters).
'';
homepage = "https://github.com/simplejson/simplejson";
changelog = "https://github.com/simplejson/simplejson/blob/v${version}/CHANGES.txt";
license = with licenses; [ mit afl21 ];
maintainers = with maintainers; [ fab ];
};