summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/django
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/django')
-rw-r--r--pkgs/development/python-modules/django/5_1.nix7
-rw-r--r--pkgs/development/python-modules/django/5_2.nix10
2 files changed, 2 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/django/5_1.nix b/pkgs/development/python-modules/django/5_1.nix
index c872bd6f704a..741d75c86cd3 100644
--- a/pkgs/development/python-modules/django/5_1.nix
+++ b/pkgs/development/python-modules/django/5_1.nix
@@ -33,7 +33,6 @@
pylibmc,
pymemcache,
python,
- pywatchman,
pyyaml,
pytz,
redis,
@@ -108,7 +107,6 @@ buildPythonPackage rec {
pillow
pylibmc
pymemcache
- pywatchman
pyyaml
pytz
redis
@@ -117,11 +115,6 @@ buildPythonPackage rec {
tzdata
] ++ lib.flatten (lib.attrValues optional-dependencies);
- doCheck =
- !stdenv.hostPlatform.isDarwin
- # pywatchman depends on folly which does not support 32bits
- && !stdenv.hostPlatform.is32bit;
-
preCheck = ''
# make sure the installed library gets imported
rm -rf django
diff --git a/pkgs/development/python-modules/django/5_2.nix b/pkgs/development/python-modules/django/5_2.nix
index 73a0a7b74fb5..e2f72a774e82 100644
--- a/pkgs/development/python-modules/django/5_2.nix
+++ b/pkgs/development/python-modules/django/5_2.nix
@@ -33,7 +33,6 @@
pylibmc,
pymemcache,
python,
- pywatchman,
pyyaml,
pytz,
redis,
@@ -101,7 +100,6 @@ buildPythonPackage rec {
pillow
pylibmc
pymemcache
- pywatchman
pyyaml
pytz
redis
@@ -110,11 +108,6 @@ buildPythonPackage rec {
tzdata
] ++ lib.flatten (lib.attrValues optional-dependencies);
- doCheck =
- !stdenv.hostPlatform.isDarwin
- # pywatchman depends on folly which does not support 32bits
- && !stdenv.hostPlatform.is32bit;
-
preCheck = ''
# make sure the installed library gets imported
rm -rf django
@@ -132,7 +125,8 @@ buildPythonPackage rec {
runHook preCheck
pushd tests
- ${python.interpreter} runtests.py --settings=test_sqlite
+ # without --parallel=1, tests fail with an "unexpected error due to a database lock" on Darwin
+ ${python.interpreter} runtests.py --settings=test_sqlite ${lib.optionalString stdenv.hostPlatform.isDarwin "--parallel=1"}
popd
runHook postCheck