Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 26 lines 541 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, ply 5, nose 6}: 7 8buildPythonPackage rec { 9 pname = "jmespath"; 10 version = "0.9.3"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "6a81d4c9aa62caf061cb517b4d9ad1dd300374cd4706997aff9cd6aedd61fc64"; 15 }; 16 17 buildInputs = [ nose ]; 18 propagatedBuildInputs = [ ply ]; 19 20 meta = with stdenv.lib; { 21 homepage = https://github.com/boto/jmespath; 22 description = "JMESPath allows you to declaratively specify how to extract elements from a JSON document"; 23 license = "BSD"; 24 }; 25 26}