python310Packages.pyodbc 4.0.35 -> 5.0.1 https://repology.org/project/python:pyodbc/versions attrpath: python310Packages.pyodbc 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/jpzbzajr6sg8bjx76i8xa5h9cwip39nq-packages.json.drv building '/nix/store/jpzbzajr6sg8bjx76i8xa5h9cwip39nq-packages.json.drv'... Going to be running update for following packages: - python3.10-pyodbc-4.0.35 Press Enter key to continue... Running update for: - python3.10-pyodbc-4.0.35: UPDATING ... - python3.10-pyodbc-4.0.35: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/pyodbc/default.nix b/pkgs/development/python-modules/pyodbc/default.nix index d3e7faf03cd3..b20d4618167d 100644 --- a/pkgs/development/python-modules/pyodbc/default.nix +++ b/pkgs/development/python-modules/pyodbc/default.nix @@ -8,14 +8,14 @@ buildPythonPackage rec { pname = "pyodbc"; - version = "4.0.35"; + version = "5.0.1"; format = "setuptools"; disabled = pythonOlder "3.7" || isPyPy; # use pypypdbc instead src = fetchPypi { inherit pname version; - hash = "sha256-krmvSOi5KEVbyLlL89oFdR+uwJMqEe7iN8GJxtQ55cg="; + hash = "sha256-A9fQsE1akVYJnOjQPpLzlWeDdG+pI0629bXPwStkUBE="; }; nativeBuildInputs = [ No auto update branch exists Old version 4.0.35" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , isPyPy , pythonOlder , unixODBC }: buildPythonPackage rec { pname = "pyodbc"; version = "4.0.39"; format = "setuptools"; disabled = pythonOlder "3.7" || isPyPy; # use pypypdbc instead src = fetchPypi { inherit pname version; hash = "sha256-5Si7cN1tYpnuQphokl3whm4+kZx3K57/ecjheSDY8RY="; }; nativeBuildInputs = [ unixODBC # for odbc_config ]; buildInputs = [ unixODBC ]; # Tests require a database server doCheck = false; pythonImportsCheck = [ "pyodbc" ]; meta = with lib; { description = "Python ODBC module to connect to almost any database"; homepage = "https://github.com/mkleehammer/pyodbc"; changelog = "https://github.com/mkleehammer/pyodbc/releases/tag/${version}"; license = licenses.mit; platforms = platforms.unix; maintainers = with maintainers; [ bjornfor ]; }; }