Merge pull request #151296 from fabaff/bump-subarulink

python3Packages.subarulink: 0.3.15 -> 0.3.16

authored by Fabian Affolter and committed by GitHub b3f68bbe 825be2db

+9 -4
+9 -4
pkgs/development/python-modules/subarulink/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "subarulink"; 15 - version = "0.3.15"; 15 + version = "0.3.16"; 16 + format = "setuptools"; 17 + 16 18 disabled = pythonOlder "3.7"; 17 19 18 20 src = fetchFromGitHub { 19 21 owner = "G-Two"; 20 22 repo = pname; 21 23 rev = "v${version}"; 22 - sha256 = "sha256-akDccWkiFwTwq7dvUxm34BFNS5PnQowqnxVvkPFzxLM="; 24 + sha256 = "sha256-7waY5AOONi+u056JRH9KcoBWSB4AlMw4QcMW0uoCARc="; 23 25 }; 24 26 25 27 propagatedBuildInputs = [ ··· 35 37 ]; 36 38 37 39 postPatch = '' 38 - substituteInPlace setup.cfg --replace "--cov=subarulink" "" 40 + substituteInPlace setup.cfg \ 41 + --replace "--cov=subarulink" "" 39 42 ''; 40 43 41 44 __darwinAllowLocalNetworking = true; ··· 44 47 export HOME=$(mktemp -d) 45 48 ''; 46 49 47 - pythonImportsCheck = [ "subarulink" ]; 50 + pythonImportsCheck = [ 51 + "subarulink" 52 + ]; 48 53 49 54 meta = with lib; { 50 55 description = "Python module for interacting with STARLINK-enabled vehicle";