diff options
Diffstat (limited to 'pkgs/development/python-modules/omorfi/default.nix')
-rw-r--r-- | pkgs/development/python-modules/omorfi/default.nix | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/pkgs/development/python-modules/omorfi/default.nix b/pkgs/development/python-modules/omorfi/default.nix index 55fe7a0454ae..ab78e6eda120 100644 --- a/pkgs/development/python-modules/omorfi/default.nix +++ b/pkgs/development/python-modules/omorfi/default.nix @@ -1,8 +1,8 @@ -{ buildPythonPackage -, pkgs -, lib -, stdenv -, hfst +{ + buildPythonPackage, + pkgs, + lib, + hfst, }: buildPythonPackage rec { @@ -12,9 +12,7 @@ buildPythonPackage rec { sourceRoot = "${src.name}/src/python"; - propagatedBuildInputs = [ - hfst - ]; + propagatedBuildInputs = [ hfst ]; # Fixes some improper import paths patches = [ ./importfix.patch ]; @@ -27,7 +25,5 @@ buildPythonPackage rec { homepage = "https://github.com/flammie/omorfi"; license = licenses.gpl3; maintainers = with maintainers; [ lurkki ]; - # Ofborg build error (hfst not found?) - broken = stdenv.isDarwin; }; } |