python312Packages.fastjsonschema: 2.18.1 -> 2.19.1

https://github.com/horejsek/python-fastjsonschema/blob/v2.19.1/CHANGELOG.txt
This commit is contained in:
Martin Weinelt 2024-03-24 12:58:32 +01:00
parent 37606d323b
commit c7eb0179e3
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
1 changed files with 11 additions and 6 deletions

View File

@ -2,13 +2,14 @@
, stdenv
, buildPythonPackage
, fetchFromGitHub
, fetchpatch2
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "fastjsonschema";
version = "2.18.1";
version = "2.19.1";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -18,17 +19,21 @@ buildPythonPackage rec {
repo = "python-fastjsonschema";
rev = "v${version}";
fetchSubmodules = true;
hash = "sha256-t6JnqQgsWAL8oL8+LO0xrXMYsZOlTF3DlXkRiqUzYtU=";
hash = "sha256-UxcxVB4ldnGAYJKWEccivon1CwZD588mNiVJOJPNeN8=";
};
patches = [
(fetchpatch2 {
name = "fastjsonschema-pytest8-compat.patch";
url = "https://github.com/horejsek/python-fastjsonschema/commit/efc04daf4124a598182dfcfd497615cd1e633d18.patch";
hash = "sha256-G1/PIpdN+KFfRP9pUFf/ANXLq3mzrocEHyBNWQMVOZM=";
})
];
nativeCheckInputs = [
pytestCheckHook
];
pytestFlagsArray = [
"-W" "ignore::pytest.PytestRemovedIn8Warning"
];
dontUseSetuptoolsCheck = true;
disabledTests = [