mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
python.futures: disable tests on darwin
https://hydra.nixos.org/build/78788633
This commit is contained in:
parent
f3fc04bfd2
commit
65c43b4468
1 changed files with 3 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue