summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-09-17 15:43:14 +0200
committerSandro Jäckel <sandro.jaeckel@sap.com>2022-09-19 16:05:36 +0200
commit7084f8c779aaadfb17d4928857c6894116faec29 (patch)
tree3affb286f4c70ce5a573b67e4f73e8cf6315dcde
parentec82b18808889036d3e3fcff00912d71763a321c (diff)
downloadnixpkgs-7084f8c779aaadfb17d4928857c6894116faec29.tar
nixpkgs-7084f8c779aaadfb17d4928857c6894116faec29.tar.gz
nixpkgs-7084f8c779aaadfb17d4928857c6894116faec29.tar.bz2
nixpkgs-7084f8c779aaadfb17d4928857c6894116faec29.tar.lz
nixpkgs-7084f8c779aaadfb17d4928857c6894116faec29.tar.xz
nixpkgs-7084f8c779aaadfb17d4928857c6894116faec29.tar.zst
nixpkgs-7084f8c779aaadfb17d4928857c6894116faec29.zip
python3Packages.poetry: relax crashtest constraint
-rw-r--r--pkgs/development/python-modules/poetry/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/poetry/default.nix b/pkgs/development/python-modules/poetry/default.nix
index 07dcb96f407..3105187c98a 100644
--- a/pkgs/development/python-modules/poetry/default.nix
+++ b/pkgs/development/python-modules/poetry/default.nix
@@ -53,6 +53,11 @@ buildPythonPackage rec {
     hash = "sha256-+Nsg7oPh9tAHEKt1R9C+nY9UPy+9vbf/+A6vQWgTi+4=";
   };
 
+  postPatch = ''
+    substituteInPlace pyproject.toml \
+      --replace 'crashtest = "^0.3.0"' 'crashtest = "*"'
+  '';
+
   nativeBuildInputs = [
     installShellFiles
   ];