mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-03 17:33:26 +03:00
offlineimap: use python2
This commit is contained in:
parent
1ba3d8b7d1
commit
026ec8cfb5
@ -1,10 +1,9 @@
|
|||||||
{ stdenv, fetchFromGitHub, pythonPackages,
|
{ stdenv, fetchFromGitHub, python2Packages,
|
||||||
asciidoc, libxml2, libxslt, docbook_xsl }:
|
asciidoc, libxml2, libxslt, docbook_xsl }:
|
||||||
|
|
||||||
pythonPackages.buildPythonApplication rec {
|
python2Packages.buildPythonApplication rec {
|
||||||
version = "7.2.1";
|
version = "7.2.1";
|
||||||
name = "offlineimap-${version}";
|
pname = "offlineimap";
|
||||||
namePrefix = "";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "OfflineIMAP";
|
owner = "OfflineIMAP";
|
||||||
@ -21,7 +20,7 @@ pythonPackages.buildPythonApplication rec {
|
|||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
nativeBuildInputs = [ asciidoc libxml2 libxslt docbook_xsl ];
|
nativeBuildInputs = [ asciidoc libxml2 libxslt docbook_xsl ];
|
||||||
propagatedBuildInputs = [ pythonPackages.six pythonPackages.kerberos ];
|
propagatedBuildInputs = with python2Packages; [ six kerberos ];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
make -C docs man
|
make -C docs man
|
||||||
|
Loading…
Reference in New Issue
Block a user