python310Packages.stemming: init at 1.0.1
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
let
|
||||
pname = "stemming";
|
||||
version = "1.0.1";
|
||||
in
|
||||
buildPythonPackage {
|
||||
inherit version pname;
|
||||
format = "setuptools";
|
||||
|
||||
# Pypi source package doesn't contain tests
|
||||
src = fetchFromGitHub {
|
||||
owner = "nmstoker";
|
||||
repo = pname;
|
||||
rev = "477d0e354e79843f5ec241ba3603bcb5b843c3c4";
|
||||
hash = "sha256-wnmBCbxnCZ9mN1J7sLcN7OynMcvqgAnhEgpAwW2/xz4=";
|
||||
};
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
pythonImportsCheck = [ "stemming" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python implementations of various stemming algorithms.";
|
||||
homepage = "https://github.com/nmstoker/stemming";
|
||||
license = licenses.unlicense;
|
||||
maintainers = with maintainers; [ happysalada ];
|
||||
};
|
||||
}
|
||||
@@ -11945,6 +11945,8 @@ self: super: with self; {
|
||||
|
||||
stem = callPackage ../development/python-modules/stem { };
|
||||
|
||||
stemming = callPackage ../development/python-modules/stemming { };
|
||||
|
||||
stestr = callPackage ../development/python-modules/stestr { };
|
||||
|
||||
stevedore = callPackage ../development/python-modules/stevedore { };
|
||||
|
||||
Reference in New Issue
Block a user