python.futures: disable tests on darwin

https://hydra.nixos.org/build/78788633
This commit is contained in:
Matthew Bauer 2018-07-31 22:11:32 -04:00 committed by GitHub
parent f3fc04bfd2
commit 65c43b4468
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k, python }:
{ lib, buildPythonPackage, fetchPypi, isPy3k, python, stdenv }:
buildPythonPackage rec {
pname = "futures";
@ -16,6 +16,8 @@ buildPythonPackage rec {
${python.interpreter} test_futures.py
'';
doCheck = !stdenv.isDarwin;
meta = with lib; {
description = "Backport of the concurrent.futures package from Python 3.2";
homepage = "https://github.com/agronholm/pythonfutures";