mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
Merge pull request #158924 from r-ryantm/auto-update/python3.10-nltk
python310Packages.nltk: 3.6.7 -> 3.7
This commit is contained in:
commit
94c30c2cf3
1 changed files with 16 additions and 6 deletions
|
@ -1,4 +1,7 @@
|
|||
{ fetchPypi, buildPythonPackage, lib, isPy3k
|
||||
{ lib
|
||||
, fetchPypi
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, click
|
||||
, joblib
|
||||
, regex
|
||||
|
@ -6,13 +9,16 @@
|
|||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "3.6.7";
|
||||
pname = "nltk";
|
||||
version = "3.7";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
extension = "zip";
|
||||
sha256 = "51bf1aef5304740a708be7c8e683f7798f03dc5c7a7e7feb758be9e95f4585e3";
|
||||
hash = "sha256-1lB9ZGDOx21wr+pCQqImp1QvhcZpF3ucf1YrfPGwVQI=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
@ -30,10 +36,14 @@ buildPythonPackage rec {
|
|||
# best.
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
pythonImportsCheck = [
|
||||
"nltk"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Natural Language Processing ToolKit";
|
||||
homepage = "http://nltk.org/";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ lheckemann ];
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ lheckemann ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue