python.futures: disable tests on darwin
https://hydra.nixos.org/build/78788633
This commit is contained in:
parent
f3fc04bfd2
commit
65c43b4468
@ -1,4 +1,4 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi, isPy3k, python }:
|
{ lib, buildPythonPackage, fetchPypi, isPy3k, python, stdenv }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "futures";
|
pname = "futures";
|
||||||
@ -16,6 +16,8 @@ buildPythonPackage rec {
|
|||||||
${python.interpreter} test_futures.py
|
${python.interpreter} test_futures.py
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
doCheck = !stdenv.isDarwin;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Backport of the concurrent.futures package from Python 3.2";
|
description = "Backport of the concurrent.futures package from Python 3.2";
|
||||||
homepage = "https://github.com/agronholm/pythonfutures";
|
homepage = "https://github.com/agronholm/pythonfutures";
|
||||||
|
Loading…
Reference in New Issue
Block a user