Merge pull request #8127 from ip1981/mwlib

Add more dependencies for mwlib
This commit is contained in:
lethalman 2015-06-03 12:50:02 +02:00
commit d144ece04e
2 changed files with 18 additions and 1 deletions

View File

@ -226,10 +226,11 @@ in
chmod -Rc u=rwX,go= '${cfg.nslave.cachedir}'
'';
path = with pkgs; [ imagemagick ];
environment = {
PYTHONPATH = concatMapStringsSep ":"
(m: "${pypkgs.${m}}/lib/${python.libPrefix}/site-packages")
[ "mwlib-rl" "mwlib-ext" "pygments" ];
[ "mwlib-rl" "mwlib-ext" "pygments" "pyfribidi" ];
};
serviceConfig = {

View File

@ -5011,6 +5011,22 @@ let
};
});
pyfribidi = buildPythonPackage rec {
version = "0.11.0";
name = "pyfribidi-${version}";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/p/pyfribidi/${name}.zip";
md5 = "a3fc1f9d34571305782d1a54ee36f904";
};
meta = {
description = "simple wrapper around fribidi.";
homepage = "https://github.com/pediapress/pyfribidi";
license = stdenv.lib.licenses.gpl2;
};
};
docker_compose = buildPythonPackage rec {
name = "docker-compose-1.2.0rc2";
disabled = isPy3k || isPyPy;