8 buildPythonPackage rec {
10 inherit (pkgs.omorfi) src version;
12 sourceRoot = "${src.name}/src/python";
14 propagatedBuildInputs = [
18 # Fixes some improper import paths
19 patches = [ ./importfix.patch ];
21 # Apply patch relative to source/src
22 patchFlags = [ "-p3" ];
25 description = "Python interface for Omorfi";
26 homepage = "https://github.com/flammie/omorfi";
27 license = licenses.gpl3;
28 maintainers = with maintainers; [ lurkki ];
29 # Ofborg build error (hfst not found?)
30 broken = stdenv.isDarwin;