My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/ukkonen/default.nix

41 lines
742 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, cffi
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "ukkonen";
version = "1.0.1";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "asottile";
repo = pname;
rev = "v${version}";
sha256 = "jG6VP/P5sadrdrmneH36/ExSld9blyMAAG963QS9+p0=";
};
nativeBuildInputs = [
cffi
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"ukkonen"
];
meta = with lib; {
description = "Python implementation of bounded Levenshtein distance (Ukkonen)";
homepage = "https://github.com/asottile/ukkonen";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}