9 buildPythonPackage rec {
10 version = "0.99.2dev-384-2b73caca";
14 inherit pname version;
15 sha256 = "0k3zzz84wzz9q1fl3vvqr2ys96z9pcf4viq9q6s2a63zaysmcfd2";
20 disabled = isPyPy || isPy3k;
22 # Same as in buildPythonPackage except that it does not pass --old-and-unmanageable
26 mkdir -p "$out/lib/${python.libPrefix}/site-packages"
28 export PYTHONPATH="$out/lib/${python.libPrefix}/site-packages:$PYTHONPATH"
30 ${python}/bin/${python.executable} setup.py install \
31 --install-lib=$out/lib/${python.libPrefix}/site-packages \
34 eapth="$out/lib/${python.libPrefix}"/site-packages/easy-install.pth
35 if [ -e "$eapth" ]; then
36 mv "$eapth" $(dirname "$eapth")/${pname}-${version}.pth
39 rm -f "$out/lib/${python.libPrefix}"/site-packages/site.py*
45 description = "Generic application framework, providing the foundation for other modules";
46 homepage = "https://github.com/freevo/kaa-base";
47 license = licenses.lgpl21;
48 maintainers = with maintainers; [ ];