depot/third_party/nixpkgs/pkgs/development/python-modules/pylev/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

31 lines
649 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, python
}:
buildPythonPackage rec {
pname = "pylev";
version = "1.4.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "toastdriven";
repo = "pylev";
rev = "v${version}";
sha256 = "0fgxjdnvnvavnxmxxd0fl5jyr2f31g3a26bwyxcpy56mgpd095c1";
};
checkPhase = ''
${python.interpreter} -m unittest tests
'';
pythonImportsCheck = [ "pylev" ];
meta = with lib; {
description = "Python Levenshtein implementation";
homepage = "https://github.com/toastdriven/pylev";
license = licenses.bsd3;
maintainers = with maintainers; [ jakewaksbaum ];
};
}