about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-03-28 21:56:11 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2024-03-28 21:56:11 +0100
commit56231b9522a1e2dbe13d744ca570c5c8b857ba71 (patch)
treee5f757b6bbfca221945f428373b0b13342b1f92b
parent64c81edb4b97a51c5bbc54c191763ac71a6517ee (diff)
downloadnixlib-56231b9522a1e2dbe13d744ca570c5c8b857ba71.tar
nixlib-56231b9522a1e2dbe13d744ca570c5c8b857ba71.tar.gz
nixlib-56231b9522a1e2dbe13d744ca570c5c8b857ba71.tar.bz2
nixlib-56231b9522a1e2dbe13d744ca570c5c8b857ba71.tar.lz
nixlib-56231b9522a1e2dbe13d744ca570c5c8b857ba71.tar.xz
nixlib-56231b9522a1e2dbe13d744ca570c5c8b857ba71.tar.zst
nixlib-56231b9522a1e2dbe13d744ca570c5c8b857ba71.zip
python312Packages.pyecoforest: refactor
-rw-r--r--pkgs/development/python-modules/pyecoforest/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/pyecoforest/default.nix b/pkgs/development/python-modules/pyecoforest/default.nix
index 2021b4e414b9..a116a3542089 100644
--- a/pkgs/development/python-modules/pyecoforest/default.nix
+++ b/pkgs/development/python-modules/pyecoforest/default.nix
@@ -25,14 +25,14 @@ buildPythonPackage rec {
 
   postPatch = ''
     substituteInPlace pyproject.toml \
-      --replace "--cov=pyecoforest --cov-report=term-missing:skip-covered" ""
+      --replace-fail "--cov=pyecoforest --cov-report=term-missing:skip-covered" ""
   '';
 
-  nativeBuildInputs = [
+  build-system = [
     poetry-core
   ];
 
-  propagatedBuildInputs = [
+  dependencies = [
     httpx
   ];