about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pylev/default.nix
blob: 895171ff7138f2e9f01c600795a172b9da6cf121 (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
{ lib, buildPythonPackage, fetchFromGitHub }:

buildPythonPackage rec {
  pname = "pylev";
  version = "1.3.0";

  # No tests in PyPi tarball
  src = fetchFromGitHub {
    owner = "toastdriven";
    repo = "pylev";
    # Can't use a tag because it's missing
    # https://github.com/toastdriven/pylev/issues/10
    # rev = "v${version};
    rev = "72e3d490515c3188e2acac9c15ea1b466f9ff938";
    sha256 = "18dg1rfnqgfl6x4vafiq4la9d7f65xak19gcvngslq0bm1z6hyd8";
  };

  meta = with lib; {
    homepage = https://github.com/toastdriven/pylev;
    description = "A pure Python Levenshtein implementation that's not freaking GPL'd";
    license = licenses.bsd3;
    maintainers = with maintainers; [ jakewaksbaum ];
  };
}