mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
mwlib may use pyfribidi
This commit is contained in:
parent
58f6da5cc6
commit
95c6b835cb
@ -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 = {
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user