about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-04-28 10:15:21 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2024-04-28 10:15:21 +0200
commit03c23e1ea6b958f5474172e3f0295d14739b1996 (patch)
tree1ec808b9d942e87dfd5e696940932e24d0b8fa6c
parent422cafb4168191cb2b766ab6ea03381e080c8644 (diff)
python312Packages.aiovodafone: refactor
-rw-r--r--pkgs/development/python-modules/aiovodafone/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/aiovodafone/default.nix b/pkgs/development/python-modules/aiovodafone/default.nix
index 82d1dd41161b0..7b8a12e63f1c7 100644
--- a/pkgs/development/python-modules/aiovodafone/default.nix
+++ b/pkgs/development/python-modules/aiovodafone/default.nix
@@ -13,7 +13,7 @@ buildPythonPackage rec {
   version = "0.6.0";
   pyproject = true;
 
-  disabled = pythonOlder "3.10";
+  disabled = pythonOlder "3.11";
 
   src = fetchFromGitHub {
     owner = "chemelli74";
@@ -24,14 +24,14 @@ buildPythonPackage rec {
 
   postPatch = ''
     substituteInPlace pyproject.toml \
-      --replace " --cov=aiovodafone --cov-report=term-missing:skip-covered" ""
+      --replace-fail " --cov=aiovodafone --cov-report=term-missing:skip-covered" ""
   '';
 
-  nativeBuildInputs = [
+  build-system = [
     poetry-core
   ];
 
-  propagatedBuildInputs = [
+  dependencies = [
     aiohttp
     beautifulsoup4
   ];