diff options
| author | Dmitry Kalinkin <dmitry.kalinkin@gmail.com> | 2021-12-21 15:24:32 -0500 |
|---|---|---|
| committer | Dmitry Kalinkin <dmitry.kalinkin@gmail.com> | 2021-12-21 15:24:57 -0500 |
| commit | 17e31128d3820b4664982f8e06191046559bc6b1 (patch) | |
| tree | df872cdbb05396a87b82781e17e5d593867671df /pkgs/development/python-modules/apsw | |
| parent | mirtk: pin boost (#151596) (diff) | |
| download | nixpkgs-17e31128d3820b4664982f8e06191046559bc6b1.tar.gz | |
python3Packages.apsw: fix darwin build
Diffstat (limited to 'pkgs/development/python-modules/apsw')
| -rw-r--r-- | pkgs/development/python-modules/apsw/default.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/apsw/default.nix b/pkgs/development/python-modules/apsw/default.nix index a2e35265d448..034e3e0df256 100644 --- a/pkgs/development/python-modules/apsw/default.nix +++ b/pkgs/development/python-modules/apsw/default.nix @@ -1,4 +1,5 @@ { lib +, stdenv , buildPythonPackage , fetchFromGitHub , sqlite @@ -39,6 +40,11 @@ buildPythonPackage rec { "testVFS" "testVFSWithWAL" "testdb" + ] ++ lib.optionals stdenv.isDarwin [ + # This is https://github.com/rogerbinns/apsw/issues/277 but + # because we use pytestCheckHook we need to blacklist the test + # manually + "testzzForkChecker" ]; pythonImportsCheck = [ |
