summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-11-17 18:10:11 +0100
committerKerstin <kerstin@erictapen.name>2023-11-18 21:36:41 +0100
commitab3c49d8036c58ad2adda6d0df69f1819fa4783f (patch)
treeeea7bc4d0c27e79416dd76f21389e4d173debaf0 /pkgs/applications/networking/mailreaders
parent8e2ed1cc3d4aa092db54730770e9e10264335a4a (diff)
downloadnixpkgs-ab3c49d8036c58ad2adda6d0df69f1819fa4783f.tar
nixpkgs-ab3c49d8036c58ad2adda6d0df69f1819fa4783f.tar.gz
nixpkgs-ab3c49d8036c58ad2adda6d0df69f1819fa4783f.tar.bz2
nixpkgs-ab3c49d8036c58ad2adda6d0df69f1819fa4783f.tar.lz
nixpkgs-ab3c49d8036c58ad2adda6d0df69f1819fa4783f.tar.xz
nixpkgs-ab3c49d8036c58ad2adda6d0df69f1819fa4783f.tar.zst
nixpkgs-ab3c49d8036c58ad2adda6d0df69f1819fa4783f.zip
afew: fix build, use sphinxHook, use pep517 build
Diffstat (limited to 'pkgs/applications/networking/mailreaders')
-rw-r--r--pkgs/applications/networking/mailreaders/afew/default.nix46
1 files changed, 27 insertions, 19 deletions
diff --git a/pkgs/applications/networking/mailreaders/afew/default.nix b/pkgs/applications/networking/mailreaders/afew/default.nix
index c5a07a89c35..a9becb9d8c9 100644
--- a/pkgs/applications/networking/mailreaders/afew/default.nix
+++ b/pkgs/applications/networking/mailreaders/afew/default.nix
@@ -1,40 +1,48 @@
-{ lib, python3Packages, fetchPypi, notmuch }:
+{ lib, python3Packages, fetchPypi, pkgs }:
 
 python3Packages.buildPythonApplication rec {
   pname = "afew";
   version = "3.0.1";
+  pyproject = true;
 
   src = fetchPypi {
     inherit pname version;
     sha256 = "0wpfqbqjlfb9z0hafvdhkm7qw56cr9kfy6n8vb0q42dwlghpz1ff";
   };
 
-  nativeBuildInputs = with python3Packages; [ sphinx setuptools-scm ];
-
-  propagatedBuildInputs = with python3Packages; [
-    python3Packages.setuptools python3Packages.notmuch chardet dkimpy
+  nativeBuildInputs = with python3Packages; [
+    sphinxHook
+    setuptools
+    setuptools-scm
   ];
 
-  nativeCheckInputs = with python3Packages; [
-    freezegun notmuch
+  sphinxBuilders = [
+    "html"
+    "man"
   ];
 
-  makeWrapperArgs = [
-    ''--prefix PATH ':' "${notmuch}/bin"''
+  propagatedBuildInputs = with python3Packages; [
+    chardet
+    dkimpy
+    notmuch
   ];
 
-  outputs = [ "out" "doc" ];
+  nativeCheckInputs = [
+    pkgs.notmuch
+  ] ++ (with python3Packages; [
+    freezegun
+    pytestCheckHook
+  ]);
 
-  postBuild =  ''
-    ${python3Packages.python.pythonOnBuildForHost.interpreter} setup.py build_sphinx -b html,man
-  '';
-
-  postInstall = ''
-    install -D -v -t $out/share/man/man1 build/sphinx/man/*
-    mkdir -p $out/share/doc/afew
-    cp -R build/sphinx/html/* $out/share/doc/afew
-  '';
+  makeWrapperArgs = [
+    ''--prefix PATH ':' "${pkgs.notmuch}/bin"''
+  ];
 
+  outputs = [
+    "out"
+    "doc"
+    "man"
+  ];
 
   meta = with lib; {
     homepage = "https://github.com/afewmail/afew";