diff --git a/pkgs/development/python-modules/jmespath/default.nix b/pkgs/development/python-modules/jmespath/default.nix index 18c2f46216f2..ca365b79b32d 100644 --- a/pkgs/development/python-modules/jmespath/default.nix +++ b/pkgs/development/python-modules/jmespath/default.nix @@ -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; [ ]; }; - }