ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / jsonpatch / default.nix
blob03060f4e866f77b5a23825856684f81e9f28324f
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , jsonpointer
5 , pytestCheckHook
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "jsonpatch";
11   version = "1.32";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "stefankoegl";
18     repo = "python-json-patch";
19     rev = "v${version}";
20     hash = "sha256-JMGBgYjnjHQ5JpzDwJcR2nVZfzmQ8ZZtcB0GsJ9Q4Jc=";
21   };
23   propagatedBuildInputs = [
24     jsonpointer
25   ];
27   checkInputs = [
28     pytestCheckHook
29   ];
31   pythonImportsCheck = [
32     "jsonpatch"
33   ];
35   pytestFlagsArray = [
36     "tests.py"
37   ];
39   meta = with lib; {
40     description = "Library to apply JSON Patches according to RFC 6902";
41     homepage = "https://github.com/stefankoegl/python-json-patch";
42     license = licenses.bsd2; # "Modified BSD license, says pypi"
43     maintainers = with maintainers; [ ];
44   };