c1eb464f3c
additional dependencies (e.g. SQLite, X11, or Tcl/Tk) outside the main Python package (i.e., pythonBase). This makes pythonFull unnecessary: you can just pass the additional modules as buildInputs to packages that require them, e.g. buildInputs = [ pythonModules.sqlite3 ]; svn path=/nixpkgs/branches/modular-python/; revision=25364
21 lines
517 B
Nix
21 lines
517 B
Nix
{ fetchurl, buildPythonPackage, ssl }:
|
|
|
|
buildPythonPackage {
|
|
name = "offlineimap-6.2.0.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://ftp.de.debian.org/debian/pool/main/o/offlineimap/offlineimap_6.2.0.2.orig.tar.gz";
|
|
sha256 = "1w69qv1dm37m53k8cd068lk5z3qjlscnjxr397gs8kdsfds67v7c";
|
|
};
|
|
|
|
propagatedBuildInputs = [ ssl ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "IMAP to local files bridge";
|
|
homepage = "http://software.complete.org/software/projects/show/offlineimap";
|
|
license = "GPLv2+";
|
|
};
|
|
}
|