python3Packages.trezor_agent: relax trezor dependency constraint
This commit is contained in:
parent
510c040872
commit
1819d5e79e
1 changed files with 6 additions and 0 deletions
|
@ -24,6 +24,12 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [ setuptools trezor libagent ecdsa ed25519 mnemonic keepkey semver wheel pinentry ];
|
||||
|
||||
# relax dependency constraint
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py \
|
||||
--replace "trezor[hidapi]>=0.12.0,<0.13" "trezor[hidapi]>=0.12.0,<0.14"
|
||||
'';
|
||||
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "libagent" ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue