Merge pull request #30429 from teto/alot

[RDY] init gpg python bindings +  Alot: 0.5.1 -> 0.7.0
This commit is contained in:
Jörg Thalheim 2018-03-28 01:03:24 +01:00 committed by GitHub
commit 8c2dafbccd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 50 additions and 19 deletions

View File

@ -1,10 +1,17 @@
{ stdenv, fetchurl, fetchpatch, libgpgerror, gnupg, pkgconfig, glib, pth, libassuan { stdenv, fetchurl, fetchpatch, libgpgerror, gnupg, pkgconfig, glib, pth, libassuan
, qtbase ? null }: , file, which
, autoreconfHook
, git
, texinfo5
, qtbase ? null
, withPython ? false, swig2 ? null, python ? null
}:
let inherit (stdenv) lib system; in let inherit (stdenv) lib system; in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "gpgme-1.10.0"; name = "gpgme-${version}";
version = "1.10.0";
src = fetchurl { src = fetchurl {
url = "mirror://gnupg/gpgme/${name}.tar.bz2"; url = "mirror://gnupg/gpgme/${name}.tar.bz2";
@ -18,11 +25,17 @@ stdenv.mkDerivation rec {
[ libgpgerror glib libassuan pth ] [ libgpgerror glib libassuan pth ]
++ lib.optional (qtbase != null) qtbase; ++ lib.optional (qtbase != null) qtbase;
nativeBuildInputs = [ pkgconfig gnupg ]; nativeBuildInputs = [ file pkgconfig gnupg autoreconfHook git texinfo5 ]
++ lib.optionals withPython [ python swig2 which ];
postPatch =''
substituteInPlace ./configure --replace /usr/bin/file ${file}/bin/file
'';
configureFlags = [ configureFlags = [
"--enable-fixed-path=${gnupg}/bin" "--enable-fixed-path=${gnupg}/bin"
]; "--with-libgpg-error-prefix=${libgpgerror.dev}"
] ++ lib.optional withPython "--enable-languages=python";
NIX_CFLAGS_COMPILE = NIX_CFLAGS_COMPILE =
# qgpgme uses Q_ASSERT which retains build inputs at runtime unless # qgpgme uses Q_ASSERT which retains build inputs at runtime unless

View File

@ -1,17 +1,22 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, isPy3k { stdenv, lib, buildPythonPackage, fetchFromGitHub, isPy3k
, notmuch, urwid, urwidtrees, twisted, python_magic, configobj, pygpgme, mock, file, gpgme}: , notmuch, urwid, urwidtrees, twisted, python_magic, configobj, mock, file, gpgme
, service-identity
, gnupg ? null, sphinx, awk ? null, procps ? null, future ? null
, withManpage ? false }:
buildPythonPackage rec { buildPythonPackage rec {
version = "0.5.1";
pname = "alot"; pname = "alot";
version = "0.7";
outputs = [ "out" ] ++ lib.optional withManpage "man";
disabled = isPy3k; disabled = isPy3k;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "pazz"; owner = "pazz";
repo = pname; repo = "alot";
rev = "version"; rev = "${version}";
sha256 = "0ipkhc5wllfq78lg47aiq4qih0yjq8ad9xkrbgc88xk8pk9166i8"; sha256 = "1y932smng7qx7ybmqw4qh75b0lv9imfs5ak9fd0qhysij8kpmdhi";
}; };
postPatch = '' postPatch = ''
@ -20,6 +25,8 @@ buildPythonPackage rec {
"themes_dir = string(default='$out/share/themes')" "themes_dir = string(default='$out/share/themes')"
''; '';
nativeBuildInputs = lib.optional withManpage sphinx;
propagatedBuildInputs = [ propagatedBuildInputs = [
notmuch notmuch
urwid urwid
@ -27,21 +34,32 @@ buildPythonPackage rec {
twisted twisted
python_magic python_magic
configobj configobj
pygpgme service-identity
mock
file file
gpgme
]; ];
postInstall = '' # some twisted tests need the network (test_env_set... )
mkdir -p $out/share doCheck = false;
postBuild = lib.optionalString withManpage "make -C docs man";
checkInputs = [ awk future mock gnupg procps ];
postInstall = lib.optionalString withManpage ''
mkdir -p $out/man
cp -r docs/build/man $out/man
''
+ ''
mkdir -p $out/share/applications
cp -r extra/themes $out/share cp -r extra/themes $out/share
wrapProgram $out/bin/alot \
--prefix LD_LIBRARY_PATH : '${stdenv.lib.makeLibraryPath [ notmuch file gpgme ]}' sed "s,/usr/bin,$out/bin,g" extra/alot.desktop > $out/share/applications/alot.desktop
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = https://github.com/pazz/alot; homepage = https://github.com/pazz/alot;
description = "Terminal MUA using notmuch mail"; description = "Terminal MUA using notmuch mail";
license = licenses.gpl3;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ garbas ]; maintainers = with maintainers; [ garbas ];
}; };

View File

@ -13,8 +13,6 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "service_identity"; pname = "service_identity";
version = "17.0.0"; version = "17.0.0";
name = "${pname}-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "pyca"; owner = "pyca";
@ -33,6 +31,6 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Service identity verification for pyOpenSSL"; description = "Service identity verification for pyOpenSSL";
license = licenses.mit; license = licenses.mit;
homepage = "https://service-identity.readthedocs.io"; homepage = https://service-identity.readthedocs.io;
}; };
} }

View File

@ -8090,6 +8090,8 @@ in {
google_gax = callPackage ../development/python-modules/google_gax { }; google_gax = callPackage ../development/python-modules/google_gax { };
gpgme = toPythonModule (pkgs.gpgme.override { withPython=true; });
grammalecte = callPackage ../development/python-modules/grammalecte { }; grammalecte = callPackage ../development/python-modules/grammalecte { };
greenlet = buildPythonPackage rec { greenlet = buildPythonPackage rec {