summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/databricks-sql-connector (follow)
Commit message (Expand)AuthorAgeFilesLines
* treewide: change 'format = "pyproject";' to 'pyproject = true;'•••This is almost all find-and-replace. I manually edited: * pkgs/development/python-modules/notifications-android-tv/default.nix, * pkgs/servers/home-assistant/default.nix, * pkgs/development/tools/continuous-integration/buildbot/master.nix A few files have not been changed in this PR because they would cause rebuilds. This PR should have 0 rebuilds. Michael Daniels2026-01-121-1/+1
* treewide: remove superfluous disabled•••There is no need to disable Python packages for Python versions that are no longer in Nixpkgs. This change was generated using the following script: pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$' for f in $(find -name '*.nix'); do grep -q "$pattern" "$f" || continue sed -i "/$pattern/d" "$f" if [ $(grep -c pythonOlder "$f") == 1 ]; then sed -i '/^\s*pythonOlder,\s*$/d' "$f" fi nixfmt "$f" done Robert Schütz2026-01-111-3/+0
* treewide: clean up 'meta = with' pattern•••This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de> Ihar Hrachyshka2025-12-101-3/+3
* python3Packages.databricks-sql-connector: relax pandas constraintMartin Weinelt2025-08-091-0/+1
* python3Packages.databricks-sql-connector: 4.0.3 -> 4.0.5•••https://github.com/databricks/databricks-sql-python/blob/v4.0.5/CHANGELOG.md This commit was automatically generated using update-python-libraries. Martin Weinelt2025-08-091-2/+2
* treewide: pytestFlagsArray -> enabledTestPaths (trivial)Yueh-Shun Li2025-06-121-1/+1
* python312Packages.databricks-sql-connector: 4.0.2 -> 4.0.3R. Ryantm2025-04-281-2/+2
* python312Packages.databricks-sql-connector: 4.0.1 -> 4.0.2R. Ryantm2025-04-101-2/+2
* python312Packages.databricks-sql-connector: 3.7.1 -> 4.0.1R. Ryantm2025-03-191-3/+3
* python312Packages.databricks-sql-connector: 3.7.0 -> 3.7.1R. Ryantm2025-01-141-2/+2
* python312Packages.databricks-sql-connector: 3.6.0 -> 3.7.0R. Ryantm2024-12-241-3/+3
* python312Packages.databricks-sql-connector: 3.4.0 -> 3.6.0R. Ryantm2024-12-011-2/+2
* python3.pkgs.databricks-sql-connector: fix build by removing patch and relaxi...Phillip Cloud2024-11-061-9/+1
* python3Packages.databricks-sql-connector: 3.3.0 -> 3.4.0•••https://github.com/databricks/databricks-sql-python/blob/v3.4.0/CHANGELOG.md Martin Weinelt2024-10-131-2/+2
* python3Packages.databricks-sql-connector: Now builds for python312•••Commit 3a30db4a28808ae1f3564857ee35c467211b84f4 fixed python312 for dependency thrift. Kristoffer K. Føllesdal2024-08-271-4/+1
* python3Packages.databricks-sql-connector: 3.2.0 -> 3.3.0, unbreak (#329134)kfollesdal2024-07-251-8/+20
* python3Packages.databricks-sql-connector: 3.1.0 -> 3.2.0•••https://github.com/databricks/databricks-sql-python/blob/v3.2.0/CHANGELOG.md Martin Weinelt2024-06-241-2/+2
* treewide: remove pythonRelaxDepsHook references•••It is is now provided automatically, when `pythonRelaxDeps` or `pythonRemoveDeps` is defined through `mk-python-derivation`. Martin Weinelt2024-06-141-2/+0
* python3Packages: format with nixfmtMartin Weinelt2024-05-221-25/+20
* python3Packages.databricks-sql-connector: 3.0.3 -> 3.1.0•••https://github.com/databricks/databricks-sql-python/blob/v3.1.0/CHANGELOG.md Martin Weinelt2024-03-121-2/+2
* python311Packages.databricks-sql-connector: 3.0.2 -> 3.0.3R. Ryantm2024-02-031-2/+2
* python311Packages.databricks-sql-connector: 3.0.1 -> 3.0.2R. Ryantm2024-01-281-2/+2
* python3Packages.databricks-sql-connector: 2.9.3 -> 3.0.1•••https://github.com/databricks/databricks-sql-python/blob/v3.0.1/CHANGELOG.md Martin Weinelt2023-12-201-2/+2
* python3Packages.databricks-sql-connector: 2.4.0 -> 2.9.3Martin Weinelt2023-09-271-2/+2
* python310Packages.databricks-sql-connector: mark as broken•••No SQLAlchemy 2.0 support https://github.com/databricks/databricks-sql-python/issues/91 Fabian Affolter2023-03-291-0/+3
* python310Packages.databricks-sql-connector: 2.3.0 -> 2.4.0•••Changelog: https://github.com/databricks/databricks-sql-python/blob/v2.4.0/CHANGELOG.md Fabian Affolter2023-03-141-2/+8
* python310Packages.databricks-sql-connector: 2.2.1 -> 2.3.0•••Diff: https://github.com/databricks/databricks-sql-python/compare/refs/tags/v2.2.1...v2.3.0 Changelog: https://github.com/databricks/databricks-sql-python/blob/v2.3.0/CHANGELOG.md Fabian Affolter2023-02-181-9/+17
* python310Packages.databricks-sql-connector: add changelog to metaFabian Affolter2023-02-171-2/+12
* treewide: switch to nativeCheckInputs•••checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs. Guillaume Girol2023-01-211-1/+1
* python3Packages.databricks-sql-connector: 2.0.5 -> 2.2.1Martin Weinelt2023-01-051-3/+3
* python3Packages.databricks-sql-connector: fix evalK9002022-09-271-1/+1
* python3Packages.databricks-sql-connector: init at 2.0.5harvidsen2022-09-231-0/+50