Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 544 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, ply 5, nose 6}: 7 8buildPythonPackage rec { 9 pname = "jmespath"; 10 version = "0.10.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "b85d0567b8666149a93172712e68920734333c0ce7e89b78b3e987f71e5ed4f9"; 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}