summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2022-01-24 16:20:25 -0600
committerGitHub <noreply@github.com>2022-01-24 16:20:25 -0600
commita3636bc91b090a362116e8ff8d801cd9fcb7abbd (patch)
tree41d6ae65ca88c7e8134033498837f52f9a5d7b48 /pkgs
parent5c3829a8b11f5104ffb7f819f5f23ce8c1cd19d3 (diff)
parentbe8a4c32229928e486ea764a755105a9e20c154c (diff)
downloadnixpkgs-a3636bc91b090a362116e8ff8d801cd9fcb7abbd.tar
nixpkgs-a3636bc91b090a362116e8ff8d801cd9fcb7abbd.tar.gz
nixpkgs-a3636bc91b090a362116e8ff8d801cd9fcb7abbd.tar.bz2
nixpkgs-a3636bc91b090a362116e8ff8d801cd9fcb7abbd.tar.lz
nixpkgs-a3636bc91b090a362116e8ff8d801cd9fcb7abbd.tar.xz
nixpkgs-a3636bc91b090a362116e8ff8d801cd9fcb7abbd.tar.zst
nixpkgs-a3636bc91b090a362116e8ff8d801cd9fcb7abbd.zip
Merge pull request #156623 from siraben/txtorcon-aarch64-darwin
python3Packages.txtorcon: disable tests on aarch64-darwin
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/txtorcon/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/txtorcon/default.nix b/pkgs/development/python-modules/txtorcon/default.nix
index 42568bbca11..93c9c95a62e 100644
--- a/pkgs/development/python-modules/txtorcon/default.nix
+++ b/pkgs/development/python-modules/txtorcon/default.nix
@@ -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
   '';