mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 12:04:40 +00:00
Merge pull request #200271 from ck3d/fix-cross-pygatt
python310Package.pygatt: fix cross compilation
This commit is contained in:
commit
a7830e8146
@ -29,9 +29,15 @@ buildPythonPackage rec {
|
||||
pexpect
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
# For cross compilation the doCheck is false and therefor the
|
||||
# nativeCheckInputs not included. We have to include nose here, since
|
||||
# setup.py requires nose unconditionally.
|
||||
nose
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
mock
|
||||
nose
|
||||
pytestCheckHook
|
||||
]
|
||||
++ passthru.optional-dependencies.GATTTOOL;
|
||||
|
Loading…
Reference in New Issue
Block a user