forked from mirrors/nixpkgs
Merge pull request #156623 from siraben/txtorcon-aarch64-darwin
python3Packages.txtorcon: disable tests on aarch64-darwin
This commit is contained in:
commit
a3636bc91b
|
@ -1,4 +1,4 @@
|
|||
{ lib, python, buildPythonPackage, pythonOlder, fetchPypi, isPy3k, incremental, ipaddress, twisted
|
||||
{ lib, stdenv, python, buildPythonPackage, pythonOlder, fetchPypi, isPy3k, incremental, ipaddress, twisted
|
||||
, automat, zope_interface, idna, pyopenssl, service-identity, pytest, mock, lsof
|
||||
, GeoIP}:
|
||||
|
||||
|
@ -22,6 +22,7 @@ buildPythonPackage rec {
|
|||
# as Python 3.5.
|
||||
disabled = pythonOlder "3.5";
|
||||
|
||||
doCheck = !(stdenv.isDarwin && stdenv.isAarch64);
|
||||
checkPhase = ''
|
||||
${python.interpreter} -m twisted.trial -j $NIX_BUILD_CORES ./test
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue