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