mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-12 05:16:25 +03:00
python38Packages.python-redis-lock: fix build on darwin
This commit is contained in:
parent
d8a76e3dc1
commit
4af9ec199f
1 changed files with 5 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, redis
|
||||
|
@ -30,6 +31,10 @@ buildPythonPackage rec {
|
|||
disabledTests = [
|
||||
# https://github.com/ionelmc/python-redis-lock/issues/86
|
||||
"test_no_overlap2"
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
# fail on Darwin because it defaults to multiprocessing `spawn`
|
||||
"test_reset_signalizes"
|
||||
"test_reset_all_signalizes"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue