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