ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / kaa-base / default.nix
blob5b789f5eda8c37d8b13dc371b0b7651aa970737a
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPyPy
5 , isPy3k
6 , python
7 }:
9 buildPythonPackage rec {
10   version = "0.99.2dev-384-2b73caca";
11   pname = "kaa-base";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "0k3zzz84wzz9q1fl3vvqr2ys96z9pcf4viq9q6s2a63zaysmcfd2";
16   };
18   doCheck = false;
20   disabled = isPyPy || isPy3k;
22   # Same as in buildPythonPackage except that it does not pass --old-and-unmanageable
23   installPhase = ''
24     runHook preInstall
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 \
32       --prefix="$out"
34     eapth="$out/lib/${python.libPrefix}"/site-packages/easy-install.pth
35     if [ -e "$eapth" ]; then
36     mv "$eapth" $(dirname "$eapth")/${pname}-${version}.pth
37     fi
39     rm -f "$out/lib/${python.libPrefix}"/site-packages/site.py*
41     runHook postInstall
42   '';
44   meta = with lib; {
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; [ ];
49   };