mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
33 lines
666 B
Nix
33 lines
666 B
Nix
{
|
|
buildPythonPackage,
|
|
pkgs,
|
|
lib,
|
|
stdenv,
|
|
hfst,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "omorfi";
|
|
format = "setuptools";
|
|
inherit (pkgs.omorfi) src version;
|
|
|
|
sourceRoot = "${src.name}/src/python";
|
|
|
|
propagatedBuildInputs = [ hfst ];
|
|
|
|
# Fixes some improper import paths
|
|
patches = [ ./importfix.patch ];
|
|
|
|
# Apply patch relative to source/src
|
|
patchFlags = [ "-p3" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python interface for Omorfi";
|
|
homepage = "https://github.com/flammie/omorfi";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ lurkki ];
|
|
# Ofborg build error (hfst not found?)
|
|
broken = stdenv.isDarwin;
|
|
};
|
|
}
|