python310Packages.marisa-trie 0 -> 1 attrpath: python310Packages.marisa-trie 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/sqggixra8ga60q2msr7b5xyc5xw9pg79-packages.json.drv building '/nix/store/sqggixra8ga60q2msr7b5xyc5xw9pg79-packages.json.drv'... Going to be running update for following packages: - python3.10-marisa-trie-0.8.0 Press Enter key to continue... Running update for: - python3.10-marisa-trie-0.8.0: UPDATING ... - python3.10-marisa-trie-0.8.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/marisa-trie/default.nix b/pkgs/development/python-modules/marisa-trie/default.nix index b2510bd0a8fe..eb5e745edc6f 100644 --- a/pkgs/development/python-modules/marisa-trie/default.nix +++ b/pkgs/development/python-modules/marisa-trie/default.nix @@ -9,11 +9,11 @@ buildPythonPackage rec { pname = "marisa-trie"; - version = "0.8.0"; + version = "1.0.0"; src = fetchPypi { inherit pname version; - hash = "sha256-PQGdF7DX9i1ubXvQUjbYJSYk6hwUC+uL+cbu/zizxwc="; + hash = "sha256-2KaDAfAjpyTrN5qqGxD4ip4aRYzIpBtSfGJQeFm0pNI="; }; nativeBuildInputs = [ No auto update branch exists Old version 0.8.0" not present in master derivation file with contents: { lib , buildPythonPackage , fetchPypi , cython , pytestCheckHook , hypothesis , readme_renderer , pythonOlder }: buildPythonPackage rec { pname = "marisa-trie"; version = "1.0.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-2KaDAfAjpyTrN5qqGxD4ip4aRYzIpBtSfGJQeFm0pNI="; }; nativeBuildInputs = [ cython ]; nativeCheckInputs = [ pytestCheckHook readme_renderer hypothesis ]; postPatch = '' substituteInPlace setup.py \ --replace "hypothesis==" "hypothesis>=" ''; preBuild = '' ./update_cpp.sh ''; disabledTestPaths = [ # Don't test packaging "tests/test_packaging.py" ]; disabledTests = [ # Pins hypothesis==2.0.0 from 2016/01 which complains about # hypothesis.errors.FailedHealthCheck: tests/test_trie.py::[...] uses # the 'tmpdir' fixture, which is reset between function calls but not # between test cases generated by `@given(...)`. "test_saveload" "test_mmap" ]; pythonImportsCheck = [ "marisa_trie" ]; meta = with lib; { description = "Static memory-efficient Trie-like structures for Python based on marisa-trie C++ library"; longDescription = '' There are official SWIG-based Python bindings included in C++ library distribution. This package provides alternative Cython-based pip-installable Python bindings. ''; homepage = "https://github.com/kmike/marisa-trie"; changelog = "https://github.com/pytries/marisa-trie/blob/${version}/CHANGES.rst"; license = licenses.mit; maintainers = with maintainers; [ ixxie ]; }; }