summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2023-09-09 23:56:18 +0200
committerPeder Bergebakken Sundt <pbsds@hotmail.com>2023-09-22 15:56:49 +0200
commit1907ffe551191c46acdf124b415c5421a1d24deb (patch)
tree98f54acd8a6c5390cb33d73703c62235b7644ada
parentc8466f963af897fa90fb686ed3b6327027d57211 (diff)
downloadnixpkgs-1907ffe551191c46acdf124b415c5421a1d24deb.tar
nixpkgs-1907ffe551191c46acdf124b415c5421a1d24deb.tar.gz
nixpkgs-1907ffe551191c46acdf124b415c5421a1d24deb.tar.bz2
nixpkgs-1907ffe551191c46acdf124b415c5421a1d24deb.tar.lz
nixpkgs-1907ffe551191c46acdf124b415c5421a1d24deb.tar.xz
nixpkgs-1907ffe551191c46acdf124b415c5421a1d24deb.tar.zst
nixpkgs-1907ffe551191c46acdf124b415c5421a1d24deb.zip
python3Packages.aiohttp-remotes: switch to pypaBuildHook
-rw-r--r--pkgs/development/python-modules/aiohttp-remotes/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/aiohttp-remotes/default.nix b/pkgs/development/python-modules/aiohttp-remotes/default.nix
index ae0cbf99841..66f81b12329 100644
--- a/pkgs/development/python-modules/aiohttp-remotes/default.nix
+++ b/pkgs/development/python-modules/aiohttp-remotes/default.nix
@@ -2,6 +2,7 @@
 , aiohttp
 , buildPythonPackage
 , fetchPypi
+, flit
 , pytest-aiohttp
 , pytestCheckHook
 , pythonOlder
@@ -11,7 +12,7 @@
 buildPythonPackage rec {
   pname = "aiohttp-remotes";
   version = "1.2.0";
-  format = "flit";
+  format = "pyproject";
 
   disabled = pythonOlder "3.6";
 
@@ -21,6 +22,10 @@ buildPythonPackage rec {
     sha256 = "f95c3a6be5e2de746a85ce9af49ec548da6db8378d7e81bb171ec77b13562a6c";
   };
 
+  nativeBuildInputs = [
+    flit
+  ];
+
   propagatedBuildInputs = [
     aiohttp
   ] ++ lib.optionals (pythonOlder "3.7") [