python3Packages.jmespath: 1.0.0 -> 1.0.1

This commit is contained in:
Martin Weinelt 2022-07-16 12:59:14 +02:00
parent d439f928df
commit 73ad57882e

View file

@ -1,26 +1,29 @@
{ lib
, buildPythonPackage
, fetchPypi
, ply
, nose
, hypothesis
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "jmespath";
version = "1.0.0";
version = "1.0.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-pJDigO3R9X1t6IY2mS0Ftx6X1pomoZ8Fjs99MER0v14=";
sha256 = "sha256-kCYbIG1t79WP3V6F9Hi/YzopAXmJBr4q04kVDFxg7b4=";
};
buildInputs = [ nose ];
propagatedBuildInputs = [ ply ];
checkInputs = [
hypothesis
pytestCheckHook
];
meta = with lib; {
homepage = "https://github.com/boto/jmespath";
homepage = "https://github.com/jmespath/jmespath.py";
description = "JMESPath allows you to declaratively specify how to extract elements from a JSON document";
license = "BSD";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}