mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-10-31 20:39:48 +00:00
21 lines
530 B
Nix
21 lines
530 B
Nix
with import <nixpkgs> {};
|
|
|
|
let
|
|
python = let
|
|
packageOverrides = self: super: {
|
|
trezor = super.trezor.overridePythonAttrs(old: rec {
|
|
version = "master";
|
|
src = ./.;
|
|
doCheck = true; # set to false if you want to skip tests
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
pytest tests/ --ignore tests/test_tx_api.py
|
|
runHook postCheck
|
|
'';
|
|
});
|
|
};
|
|
in pkgs.python3.override {inherit packageOverrides; self = python;};
|
|
|
|
in python.withPackages(ps:[ps.trezor])
|
|
|