summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2023-09-09 23:52:39 +0200
committerPeder Bergebakken Sundt <pbsds@hotmail.com>2023-09-22 15:56:49 +0200
commite87e6a7ea4be61eaeb6aea15ae4f1555e23e9b98 (patch)
tree85c1eed7fadf5cfc03a69c652551d834091c71cc /pkgs
parent1e704c4fc97f9c376be36de83d3c3c834c674ed6 (diff)
downloadnixpkgs-e87e6a7ea4be61eaeb6aea15ae4f1555e23e9b98.tar
nixpkgs-e87e6a7ea4be61eaeb6aea15ae4f1555e23e9b98.tar.gz
nixpkgs-e87e6a7ea4be61eaeb6aea15ae4f1555e23e9b98.tar.bz2
nixpkgs-e87e6a7ea4be61eaeb6aea15ae4f1555e23e9b98.tar.lz
nixpkgs-e87e6a7ea4be61eaeb6aea15ae4f1555e23e9b98.tar.xz
nixpkgs-e87e6a7ea4be61eaeb6aea15ae4f1555e23e9b98.tar.zst
nixpkgs-e87e6a7ea4be61eaeb6aea15ae4f1555e23e9b98.zip
cambrinary: switch to pypaBuildHook
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/misc/cambrinary/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/applications/misc/cambrinary/default.nix b/pkgs/applications/misc/cambrinary/default.nix
index 67e325cbce0..1fecfe1c17c 100644
--- a/pkgs/applications/misc/cambrinary/default.nix
+++ b/pkgs/applications/misc/cambrinary/default.nix
@@ -1,6 +1,7 @@
 { lib
 , buildPythonApplication
 , fetchFromGitHub
+, flit
 , aiohttp
 , beautifulsoup4
 }:
@@ -8,7 +9,7 @@
 buildPythonApplication rec {
   pname = "cambrinary";
   version = "unstable-2023-07-16";
-  format = "flit";
+  format = "pyproject";
 
   src = fetchFromGitHub {
     owner = "xueyuanl";
@@ -17,6 +18,10 @@ buildPythonApplication rec {
     hash = "sha256-wDcvpKAY/6lBjO5h3qKH3+Y2G2gm7spcKCXFMt/bAtE=";
   };
 
+  nativeBuildInputs = [
+    flit
+  ];
+
   propagatedBuildInputs = [
     aiohttp
     beautifulsoup4