depot/third_party/nixpkgs/pkgs/development/python-modules/jellyfish/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

49 lines
946 B
Nix

{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
isPy3k,
pytest,
unicodecsv,
rustPlatform,
libiconv,
}:
buildPythonPackage rec {
pname = "jellyfish";
version = "1.0.0";
disabled = !isPy3k;
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-iBquNnGZm7B85QwnaW8pyn6ELz4SOswNtlJcmZmIG9Q=";
};
nativeBuildInputs = with rustPlatform; [
maturinBuildHook
cargoSetupHook
];
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}-rust-dependencies";
hash = "sha256-Grk+n4VCPjirafcRWWI51jHw/IFUYkBtbXY739j0MFI=";
};
nativeCheckInputs = [
pytest
unicodecsv
];
meta = {
homepage = "https://github.com/sunlightlabs/jellyfish";
description = "Approximate and phonetic matching of strings";
maintainers = with lib.maintainers; [ koral ];
};
}