Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.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.4"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "bde2aef6f44302dfb30320115b17d030798de8c4110e28d5cf6cf91a7a31074c"; 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}