Merge pull request #309617 from fabaff/bitbox02-bump

python312Packages.bitbox02: 6.2.0 -> 6.3.0
This commit is contained in:
Fabian Affolter 2024-05-06 22:27:36 +02:00 committed by GitHub
commit 016b7291a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,29 +1,33 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, base58
, ecdsa
, hidapi
, noiseprotocol
, protobuf
, semver
, typing-extensions
{
lib,
base58,
buildPythonPackage,
ecdsa,
fetchPypi,
hidapi,
noiseprotocol,
protobuf,
pythonOlder,
semver,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
pname = "bitbox02";
version = "6.2.0";
format = "setuptools";
version = "6.3.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-zt4G45nJjtU2/tbYpCEgjaoA+Xtpe9g2OpQaxfMzCb8=";
hash = "sha256-0D+yIovlYw8dfDUeW+vcualbvmLs+IySkTpmHwk2meM=";
};
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
base58
ecdsa
hidapi
@ -36,9 +40,7 @@ buildPythonPackage rec {
# does not contain tests
doCheck = false;
pythonImportsCheck = [
"bitbox02"
];
pythonImportsCheck = [ "bitbox02" ];
meta = with lib; {
description = "Firmware code of the BitBox02 hardware wallet";