about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pylev/default.nix
blob: fdc5e2c08012785eae1cffc22673e584f5513b70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ 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 ];
  };
}