Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 577 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, jsonpointer 5}: 6 7buildPythonPackage rec { 8 pname = "jsonpatch"; 9 version = "1.26"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "e45df18b0ab7df1925f20671bbc3f6bd0b4b556fb4b9c5d97684b0a7eac01744"; 14 }; 15 16 # test files are missing 17 doCheck = false; 18 propagatedBuildInputs = [ jsonpointer ]; 19 20 meta = { 21 description = "Library to apply JSON Patches according to RFC 6902"; 22 homepage = "https://github.com/stefankoegl/python-json-patch"; 23 license = lib.licenses.bsd2; # "Modified BSD license, says pypi" 24 }; 25}