python313Packages.renson-endura-delta: 1.7.1 -> 1.7.2

The GitHub repository and user are gone. I manually audited all of the
code, because that seemed suspicious and could have put home-assistant
users at risk, but everything looked innocent.

+9 -7
+9 -7
pkgs/development/python-modules/renson-endura-delta/default.nix
··· 1 1 { 2 2 lib, 3 3 buildPythonPackage, 4 - fetchFromGitHub, 4 + fetchPypi, 5 5 pytestCheckHook, 6 6 pythonOlder, 7 7 requests, ··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "renson-endura-delta"; 14 - version = "1.7.1"; 14 + version = "1.7.2"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.7"; 18 18 19 - src = fetchFromGitHub { 20 - owner = "jimmyd-be"; 21 - repo = "Renson-endura-delta-library"; 22 - tag = version; 23 - hash = "sha256-ndk0qcRUWxUimNHg62UgeYK/MRKQd3e4JQDh9x8vFj8="; 19 + # github repo is gone 20 + src = fetchPypi { 21 + pname = "renson_endura_delta"; 22 + inherit version; 23 + hash = "sha256-bL4faNFh+ocNNspZCXE6/UZ4nH3mKkHSAEvwtN0xfoE="; 24 24 }; 25 25 26 26 postPatch = '' ··· 31 31 build-system = [ setuptools ]; 32 32 33 33 dependencies = [ requests ]; 34 + 35 + doCheck = false; # no tests in sdist 34 36 35 37 nativeCheckInputs = [ 36 38 pytestCheckHook