python3.pkgs.xmpppy: remove + dependent packages
This commit is contained in:
@@ -1,41 +0,0 @@
|
||||
{ lib, stdenv, fetchurl, xmpppy, pythonIRClib, python, pythonPackages, runtimeShell } :
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pyIRCt";
|
||||
version = "0.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/xmpppy/irc-transport-${version}.tar.gz";
|
||||
sha256 = "0gbc0dvj1p3088b6x315yjrlwnc5vvzp0var36wlf9z60ghvk8yb";
|
||||
};
|
||||
|
||||
buildInputs = [ pythonPackages.wrapPython ];
|
||||
|
||||
pythonPath = [
|
||||
xmpppy pythonIRClib
|
||||
];
|
||||
|
||||
# phaseNames = ["deploy" (a.makeManyWrappers "$out/share/${name}/irc.py" a.pythonWrapperArguments)];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin $out/share/${pname}-${version}
|
||||
sed -e 's@/usr/bin/@${python}/bin/@' -i irc.py
|
||||
sed -e '/configFiles/aconfigFiles += [os.getenv("HOME")+"/.pyIRCt.xml"]' -i config.py
|
||||
sed -e '/configFiles/aconfigFiles += [os.getenv("HOME")+"/.python-irc-transport.xml"]' -i config.py
|
||||
sed -e '/configFiles/iimport os' -i config.py
|
||||
cp * $out/share/${pname}-${version}
|
||||
cat > $out/bin/pyIRCt <<EOF
|
||||
#!${runtimeShell}
|
||||
cd $out/share/${pname}-${version}
|
||||
./irc.py \"$@\"
|
||||
EOF
|
||||
chmod a+rx $out/bin/pyIRCt $out/share/${pname}-${version}/irc.py
|
||||
wrapPythonPrograms
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "IRC transport module for XMPP";
|
||||
platforms = platforms.unix;
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
}
|
||||
@@ -1,39 +0,0 @@
|
||||
{ lib, stdenv, python, xmpppy, pythonPackages, fetchcvs, runtimeShell } :
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pyMAILt";
|
||||
version = "20090101";
|
||||
|
||||
src = fetchcvs {
|
||||
cvsRoot = ":pserver:anonymous@xmpppy.cvs.sourceforge.net:/cvsroot/xmpppy";
|
||||
module = "xmpppy/mail-transport";
|
||||
date = "2009-01-01";
|
||||
sha256 = "15301252e52b4ccb2156baefed8982a2a0cce3ae8eae3caf3cc28dfa615c8d6e";
|
||||
};
|
||||
|
||||
pythonPath = [ xmpppy ];
|
||||
buildInputs = [ pythonPackages.wrapPython ];
|
||||
|
||||
installPhase = ''
|
||||
cd mail-transport
|
||||
mkdir -p $out/bin $out/share/${pname}-${version}
|
||||
sed -e 's@/usr/bin/@${python}/bin/@' -i mail.py
|
||||
sed -e '/configFiles/aconfigFiles += [os.getenv("HOME")+"/.pyMAILt.xml"]' -i config.py
|
||||
sed -e '/configFiles/aconfigFiles += [os.getenv("HOME")+"/.python-mail-transport.xml"]' -i config.py
|
||||
sed -e '/configFiles/iimport os' -i config.py
|
||||
cp * $out/share/$name
|
||||
cat > $out/bin/pyMAILt <<EOF
|
||||
#!${runtimeShell}
|
||||
cd $out/share/${pname}-${version}
|
||||
./mail.py \"$@\"
|
||||
EOF
|
||||
chmod a+rx $out/bin/pyMAILt $out/share/${pname}-${version}/mail.py
|
||||
wrapPythonPrograms
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Email transport module for XMPP";
|
||||
platforms = platforms.unix;
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user