python313Packages.getjump: 2.7.2 -> 2.7.3 (#401389)

authored by Fabian Affolter and committed by GitHub f76dfc4e c4b03d6b

+13 -5
+13 -5
pkgs/development/python-modules/getjump/default.nix
··· 4 4 buildPythonPackage, 5 5 fetchPypi, 6 6 pillow, 7 - poetry-core, 7 + hatchling, 8 8 pythonOlder, 9 9 requests, 10 10 rich, 11 + uv-dynamic-versioning, 11 12 }: 12 13 13 14 buildPythonPackage rec { 14 15 pname = "getjump"; 15 - version = "2.7.2"; 16 + version = "2.7.3"; 16 17 pyproject = true; 17 18 18 19 disabled = pythonOlder "3.9"; 19 20 20 21 src = fetchPypi { 21 22 inherit pname version; 22 - hash = "sha256-fP+qFbMQGB9E8nocoNkXgru4mjONSNw2zeBa4CpDbGw="; 23 + hash = "sha256-B0d8a5IcU545zzw+7UzDtm3ACv2hDI4MBOHRPCi1MNQ="; 23 24 }; 24 25 25 - pythonRelaxDeps = [ "pillow" ]; 26 + pythonRelaxDeps = [ 27 + "pillow" 28 + "rich" 29 + ]; 26 30 27 - build-system = [ poetry-core ]; 31 + build-system = [ 32 + hatchling 33 + uv-dynamic-versioning 34 + ]; 28 35 29 36 dependencies = [ 30 37 beautifulsoup4 ··· 41 48 meta = with lib; { 42 49 description = "Get and save images from jump web viewer"; 43 50 homepage = "https://github.com/eggplants/getjump"; 51 + changelog = "https://github.com/eggplants/getjump/releases/tag/v${version}"; 44 52 license = licenses.mit; 45 53 maintainers = [ ]; 46 54 mainProgram = "jget";