nixpkgs/pkgs/development/python-modules/jsonpatch/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

46 lines
869 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, jsonpointer
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "jsonpatch";
version = "1.32";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "stefankoegl";
repo = "python-json-patch";
rev = "v${version}";
hash = "sha256-JMGBgYjnjHQ5JpzDwJcR2nVZfzmQ8ZZtcB0GsJ9Q4Jc=";
};
propagatedBuildInputs = [
jsonpointer
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"jsonpatch"
];
pytestFlagsArray = [
"tests.py"
];
meta = with lib; {
description = "Library to apply JSON Patches according to RFC 6902";
homepage = "https://github.com/stefankoegl/python-json-patch";
license = licenses.bsd2; # "Modified BSD license, says pypi"
maintainers = with maintainers; [ ];
};
}