12 buildPythonPackage rec {
21 inherit pname version;
22 hash = "sha256-iBquNnGZm7B85QwnaW8pyn6ELz4SOswNtlJcmZmIG9Q=";
25 nativeBuildInputs = with rustPlatform; [
30 buildInputs = lib.optionals stdenv.isDarwin [
34 cargoDeps = rustPlatform.fetchCargoTarball {
36 name = "${pname}-${version}-rust-dependencies";
37 hash = "sha256-Grk+n4VCPjirafcRWWI51jHw/IFUYkBtbXY739j0MFI=";
40 nativeCheckInputs = [ pytest unicodecsv ];
43 homepage = "https://github.com/sunlightlabs/jellyfish";
44 description = "Approximate and phonetic matching of strings";
45 maintainers = with lib.maintainers; [ koral ];