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 { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, ply , hypothesis
, nose , pytestCheckHook
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "jmespath"; pname = "jmespath";
version = "1.0.0"; version = "1.0.1";
format = "setuptools";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-pJDigO3R9X1t6IY2mS0Ftx6X1pomoZ8Fjs99MER0v14="; sha256 = "sha256-kCYbIG1t79WP3V6F9Hi/YzopAXmJBr4q04kVDFxg7b4=";
}; };
buildInputs = [ nose ]; checkInputs = [
propagatedBuildInputs = [ ply ]; hypothesis
pytestCheckHook
];
meta = with lib; { 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"; description = "JMESPath allows you to declaratively specify how to extract elements from a JSON document";
license = "BSD"; license = licenses.mit;
maintainers = with maintainers; [ ];
}; };
} }