Merge pull request #246718 from dotlambda/jsonmerge-tests

python310Packages.jsonmerge: run all tests
This commit is contained in:
Robert Schütz 2023-08-01 23:36:28 -07:00 committed by GitHub
commit 3b4a2c7edd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,6 +9,8 @@ buildPythonPackage rec {
pname = "jsonmerge";
version = "1.9.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-xDdX4BgLDhm3rkwTCtQqB8xYDDGRL2H0gj6Ory+jlKM=";
@ -18,11 +20,6 @@ buildPythonPackage rec {
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
# Fails with "Unresolvable JSON pointer"
"test_local_reference_in_meta"
];
meta = with lib; {
description = "Merge a series of JSON documents";
homepage = "https://github.com/avian2/jsonmerge";