python310Packages.thinc 0 -> 1 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 [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/nz8kh2qmx53lw9007gfycq5cbgy8plik-packages.json.drv building '/nix/store/nz8kh2qmx53lw9007gfycq5cbgy8plik-packages.json.drv'... Going to be running update for following packages: - python3.10-thinc-8.1.1 Press Enter key to continue... Running update for: - python3.10-thinc-8.1.1: UPDATING ... - python3.10-thinc-8.1.1: 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 1a43bcbbc4e..64646c08cc6 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.1"; + version = "8.1.6"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-m5AoKYTzy6rJjgNn3xsa+eSDYjG8Bj361yQqnQ3VK80="; + hash = "sha256-kkHDd2HwBP5oTmN9K02Lea3eurxk40OqHLoUT60sm0c="; }; buildInputs = [ No auto update branch exists Old version 8.1.1" 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 , srsly , tqdm , typing-extensions , wasabi }: buildPythonPackage rec { pname = "thinc"; version = "8.1.6"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-kkHDd2HwBP5oTmN9K02Lea3eurxk40OqHLoUT60sm0c="; }; 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 ]; checkInputs = [ 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 ]; }; }