1{ lib 2, buildPythonPackage 3, fetchPypi 4, hypothesis 5, pytestCheckHook 6}: 7 8buildPythonPackage rec { 9 pname = "jmespath"; 10 version = "1.0.1"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "sha256-kCYbIG1t79WP3V6F9Hi/YzopAXmJBr4q04kVDFxg7b4="; 16 }; 17 18 checkInputs = [ 19 hypothesis 20 pytestCheckHook 21 ]; 22 23 meta = with lib; { 24 homepage = "https://github.com/jmespath/jmespath.py"; 25 description = "JMESPath allows you to declaratively specify how to extract elements from a JSON document"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ ]; 28 }; 29}