Merge pull request #240117 from r-ryantm/auto-update/python310Packages.bitbox02

python310Packages.bitbox02: 6.1.1 -> 6.2.0

authored by

Fabian Affolter and committed by
GitHub
897d6133 c745f245

+31 -5
+31 -5
pkgs/development/python-modules/bitbox02/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, base58, ecdsa, hidapi, noiseprotocol, protobuf, semver, typing-extensions }: 1 + { lib 2 + , buildPythonPackage 3 + , pythonOlder 4 + , fetchPypi 5 + , base58 6 + , ecdsa 7 + , hidapi 8 + , noiseprotocol 9 + , protobuf 10 + , semver 11 + , typing-extensions 12 + }: 2 13 3 14 buildPythonPackage rec { 4 15 pname = "bitbox02"; 5 - version = "6.1.1"; 16 + version = "6.2.0"; 17 + format = "setuptools"; 18 + 19 + disabled = pythonOlder "3.7"; 6 20 7 21 src = fetchPypi { 8 22 inherit pname version; 9 - hash = "sha256-mVA0CdbGGJn44R6xHnophmsnVMsCwDrPNM3vmXVa7dg="; 23 + hash = "sha256-zt4G45nJjtU2/tbYpCEgjaoA+Xtpe9g2OpQaxfMzCb8="; 10 24 }; 11 25 12 - propagatedBuildInputs = [ base58 ecdsa hidapi noiseprotocol protobuf semver typing-extensions ]; 26 + propagatedBuildInputs = [ 27 + base58 28 + ecdsa 29 + hidapi 30 + noiseprotocol 31 + protobuf 32 + semver 33 + typing-extensions 34 + ]; 13 35 14 36 # does not contain tests 15 37 doCheck = false; 16 - pythonImportsCheck = [ "bitbox02" ]; 38 + 39 + pythonImportsCheck = [ 40 + "bitbox02" 41 + ]; 17 42 18 43 meta = with lib; { 19 44 description = "Firmware code of the BitBox02 hardware wallet"; 20 45 homepage = "https://github.com/digitalbitbox/bitbox02-firmware/"; 46 + changelog = "https://github.com/digitalbitbox/bitbox02-firmware/blob/py-bitbox02-${version}/CHANGELOG.md"; 21 47 license = licenses.asl20; 22 48 maintainers = with maintainers; [ SuperSandro2000 ]; 23 49 };