evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / stemming / default.nix
blob98ef1eea9b0922d5a8c36b16f484aa38f0203e98
2   lib,
3   buildPythonPackage,
4   pythonOlder,
5   fetchFromGitHub,
6 }:
7 let
8   pname = "stemming";
9   version = "1.0.1";
11 buildPythonPackage {
12   inherit version pname;
13   format = "setuptools";
15   # Pypi source package doesn't contain tests
16   src = fetchFromGitHub {
17     owner = "nmstoker";
18     repo = pname;
19     rev = "477d0e354e79843f5ec241ba3603bcb5b843c3c4";
20     hash = "sha256-wnmBCbxnCZ9mN1J7sLcN7OynMcvqgAnhEgpAwW2/xz4=";
21   };
23   disabled = pythonOlder "3.7";
25   pythonImportsCheck = [ "stemming" ];
27   meta = with lib; {
28     description = "Python implementations of various stemming algorithms";
29     homepage = "https://github.com/nmstoker/stemming";
30     license = licenses.unlicense;
31     maintainers = with maintainers; [ happysalada ];
32   };