lol

Merge pull request #255455 from r-ryantm/auto-update/python310Packages.jsonpath-ng

python310Packages.jsonpath-ng: 1.5.3 -> 1.6.0

authored by

Fabian Affolter and committed by
GitHub
7c2ddffb 624c2017

+17 -11
+17 -11
pkgs/development/python-modules/jsonpath-ng/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , decorator 4 3 , fetchFromGitHub 5 4 , ply 6 5 , pytestCheckHook 7 - , six 6 + , pythonOlder 7 + , setuptools 8 8 }: 9 9 10 10 buildPythonPackage rec { 11 11 pname = "jsonpath-ng"; 12 - version = "1.5.3"; 12 + version = "1.6.0"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.7"; 13 16 14 17 src = fetchFromGitHub { 15 18 owner = "h2non"; 16 19 repo = pname; 17 - # missing tag https://github.com/h2non/jsonpath-ng/issues/114 18 - rev = "cce4a3d4063ac8af928795acc53beb27a2bfd101"; 19 - hash = "sha256-+9iQHQs5TQhZFeIqMlsa3FFPfZEktAWy1lSdJU7kZrc="; 20 + rev = "refs/tags/v${version}"; 21 + hash = "sha256-q4kIH/2+VKdlSa+IhJ3ymHpc5gmml9lW4aJS477/YSo="; 20 22 }; 21 23 22 24 propagatedBuildInputs = [ 23 - decorator 24 25 ply 25 - six 26 + setuptools 26 27 ]; 27 28 28 - nativeCheckInputs = [ pytestCheckHook ]; 29 + nativeCheckInputs = [ 30 + pytestCheckHook 31 + ]; 29 32 30 33 disabledTestPaths = [ 31 34 # Exclude tests that require oslotest 32 35 "tests/test_jsonpath_rw_ext.py" 33 36 ]; 34 37 35 - pythonImportsCheck = [ "jsonpath_ng" ]; 38 + pythonImportsCheck = [ 39 + "jsonpath_ng" 40 + ]; 36 41 37 42 meta = with lib; { 38 - description = "JSONPath implementation for Python"; 43 + description = "JSONPath implementation"; 39 44 homepage = "https://github.com/h2non/jsonpath-ng"; 45 + changelog = "https://github.com/h2non/jsonpath-ng/blob/v${version}/History.md"; 40 46 license = with licenses; [ asl20 ]; 41 47 maintainers = with maintainers; [ fab ]; 42 48 };