python310Packages.thinc 8.1.10 -> 8.2.1 https://repology.org/project/python:thinc/versions attrpath: python310Packages.thinc Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/kwwai7gc7iypnaq2bwg73c2qc980xx5f-packages.json.drv building '/nix/store/kwwai7gc7iypnaq2bwg73c2qc980xx5f-packages.json.drv'... Going to be running update for following packages: - python3.10-thinc-8.1.10 Press Enter key to continue... Running update for: - python3.10-thinc-8.1.10: UPDATING ... - python3.10-thinc-8.1.10: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/thinc/default.nix b/pkgs/development/python-modules/thinc/default.nix index a712f0078b9a..c77ce82106e6 100644 --- a/pkgs/development/python-modules/thinc/default.nix +++ b/pkgs/development/python-modules/thinc/default.nix @@ -29,14 +29,14 @@ buildPythonPackage rec { pname = "thinc"; - version = "8.1.10"; + version = "8.2.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-bEpI19oH4EToSmjLubIvMvhJCZWiurC/xg5BLRSvuZE="; + hash = "sha256-zX/bPYg6FeaQYlTn+wFi9ph46czdH4UZ22/7/ka/b0k="; }; buildInputs = [ An auto update branch exists with message `python310Packages.thinc: 8.1.10 -> 8.2.0`. New version is 8.2.1. The auto update branch does not match or exceed the new version. Old version 8.1.10" not present in staging derivation file with contents: { lib , stdenv , Accelerate , blis , buildPythonPackage , catalogue , confection , CoreFoundation , CoreGraphics , CoreVideo , cymem , cython , fetchPypi , hypothesis , mock , murmurhash , numpy , plac , preshed , pydantic , pytestCheckHook , python , pythonOlder , setuptools , srsly , tqdm , typing-extensions , wasabi }: buildPythonPackage rec { pname = "thinc"; version = "8.2.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-gsoeeDHjVNdMZ3bth9vXP0qtWe0ljIdGy+hoaIGG/Ek="; }; postPatch = '' substituteInPlace setup.cfg \ --replace "preshed>=3.0.2,<3.1.0" "preshed" ''; nativeBuildInputs = [ setuptools ]; buildInputs = [ cython ] ++ lib.optionals stdenv.isDarwin [ Accelerate CoreFoundation CoreGraphics CoreVideo ]; propagatedBuildInputs = [ blis catalogue confection cymem murmurhash numpy plac preshed pydantic srsly tqdm wasabi ] ++ lib.optionals (pythonOlder "3.8") [ typing-extensions ]; nativeCheckInputs = [ hypothesis mock pytestCheckHook ]; # Add native extensions. preCheck = '' export PYTHONPATH=$out/${python.sitePackages}:$PYTHONPATH # avoid local paths, relative imports wont resolve correctly mv thinc/tests tests rm -r thinc ''; pythonImportsCheck = [ "thinc" ]; meta = with lib; { description = "Library for NLP machine learning"; homepage = "https://github.com/explosion/thinc"; license = licenses.mit; maintainers = with maintainers; [ aborsu ]; }; }