summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPhillip Cloud <417981+cpcloud@users.noreply.github.com>2023-08-21 05:32:32 -0400
committerPhillip Cloud <417981+cpcloud@users.noreply.github.com>2023-08-21 05:37:37 -0400
commit1bcbedf4606966238ef84410417bf37c3e6bfab7 (patch)
tree6be5cb33a766c532d542d30381010ca17b6062b2 /pkgs
parent3d283d42a27e63b358d463f7fb5b820d4603126f (diff)
python3Packges.ibis-framework: remove unnecessary `set -eo pipefail`
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/ibis-framework/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/ibis-framework/default.nix b/pkgs/development/python-modules/ibis-framework/default.nix
index 9c36a7e25fb62..e139a2423a710 100644
--- a/pkgs/development/python-modules/ibis-framework/default.nix
+++ b/pkgs/development/python-modules/ibis-framework/default.nix
@@ -88,6 +88,8 @@ buildPythonPackage rec {
     poetry-dynamic-versioning
   ];
 
+  POETRY_DYNAMIC_VERSIONING_BYPASS = version;
+
   propagatedBuildInputs = [
     atpublic
     bidict
@@ -139,8 +141,6 @@ buildPythonPackage rec {
   '';
 
   preCheck = ''
-    set -eo pipefail
-
     HOME="$TMPDIR"
     export IBIS_TEST_DATA_DIRECTORY="ci/ibis-testing-data"