tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
pythonPackages.alot: cleanup inputs, fix inputs
Sandro Jäckel
5 years ago
451ffcb2
bee35c7b
+4
-6
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
alot
default.nix
+4
-6
pkgs/development/python-modules/alot/default.nix
···
1
1
-
{ lib, buildPythonPackage, python, fetchFromGitHub, fetchpatch, isPy3k
1
1
+
{ lib, buildPythonPackage, python, fetchFromGitHub, isPy3k
2
2
, notmuch, urwid, urwidtrees, twisted, python_magic, configobj, mock, file, gpgme
3
3
-
, service-identity
4
4
-
, gnupg ? null, sphinx, awk ? null, procps ? null, future ? null
5
5
-
, withManpage ? false }:
6
6
-
3
3
+
, service-identity, gnupg, sphinx, gawk, procps, future , withManpage ? false
4
4
+
}:
7
5
8
6
buildPythonPackage rec {
9
7
pname = "alot";
···
41
39
doCheck = false;
42
40
postBuild = lib.optionalString withManpage "make -C docs man";
43
41
44
44
-
checkInputs = [ awk future mock gnupg procps ];
42
42
+
checkInputs = [ gawk future mock gnupg procps ];
45
43
46
44
postInstall = let
47
45
completionPython = python.withPackages (ps: [ ps.configobj ]);