pythonPackages.alot: cleanup inputs, fix inputs

This commit is contained in:
Sandro Jäckel 2021-03-06 19:52:53 +01:00
parent bee35c7b7c
commit 451ffcb2ac
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -1,9 +1,7 @@
{ lib, buildPythonPackage, python, fetchFromGitHub, fetchpatch, isPy3k { lib, buildPythonPackage, python, fetchFromGitHub, isPy3k
, notmuch, urwid, urwidtrees, twisted, python_magic, configobj, mock, file, gpgme , notmuch, urwid, urwidtrees, twisted, python_magic, configobj, mock, file, gpgme
, service-identity , service-identity, gnupg, sphinx, gawk, procps, future , withManpage ? false
, gnupg ? null, sphinx, awk ? null, procps ? null, future ? null }:
, withManpage ? false }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "alot"; pname = "alot";
@ -41,7 +39,7 @@ buildPythonPackage rec {
doCheck = false; doCheck = false;
postBuild = lib.optionalString withManpage "make -C docs man"; postBuild = lib.optionalString withManpage "make -C docs man";
checkInputs = [ awk future mock gnupg procps ]; checkInputs = [ gawk future mock gnupg procps ];
postInstall = let postInstall = let
completionPython = python.withPackages (ps: [ ps.configobj ]); completionPython = python.withPackages (ps: [ ps.configobj ]);