python3Packages.spacy-transformers: 1.1.9 -> 1.2.2

This commit is contained in:
John D. Boy 2023-02-09 13:50:58 +01:00
parent 3698eb68a7
commit cdf044caad
2 changed files with 4 additions and 3 deletions

View File

@ -59,10 +59,11 @@ def test_verbs(doc_en_core_web_trf):
assert [
token.lemma_ for token in doc_en_core_web_trf if token.pos_ == "VERB"] == [
'start',
'work',
'drive',
'take',
'tell',
'shake',
'turn',
'be',
'talk',
'say']

View File

@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "spacy-transformers";
version = "1.1.9";
version = "1.2.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-2uU6y/rsvNSLpeXL6O9IOQ0RMN0AEMH+/IKH6uufusU=";
hash = "sha256-Up9ZlLlAM0CDXEYDI95KsLzA0TBz/uZFqEgZLmNIABA=";
};
propagatedBuildInputs = [