mwlib may use pyfribidi

This commit is contained in:
Igor Pashev 2015-06-02 06:14:34 +00:00
parent 58f6da5cc6
commit 95c6b835cb
2 changed files with 17 additions and 1 deletions

View File

@ -230,7 +230,7 @@ in
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

@ -4991,6 +4991,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;