summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/alembic (follow)
Commit message (Expand)AuthorAgeFilesLines
* python3Packages.alembic: 1.16.4 -> 1.17.2•••Changelog: https://alembic.sqlalchemy.org/en/latest/changelog.html#changelog-1-17-2 Diff: https://github.com/sqlalchemy/alembic/compare/rel_1_16_4...rel_1_17_2 Kirill Radzikhovskyy2025-12-191-2/+2
* 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-2/+2
* python3Packages.alembic: 1.15.2 -> 1.16.4•••This commit was automatically generated using update-python-libraries. Martin Weinelt2025-08-091-13/+6
* treewide: run nixfmt 1.0.0Wolfgang Walther2025-07-241-10/+9
* python313Packages.alembic: 1.14.1 -> 1.15.2Martin Weinelt2025-04-031-2/+2
* python313Packages.alembic: 1.14.0 -> 1.14.1Martin Weinelt2025-03-111-2/+2
* python3Packages.alembic: 1.13.3 -> 1.14.0Martin Weinelt2025-01-271-2/+2
* python3Packages.alembic: 1.13.1 -> 1.13.3Martin Weinelt2024-10-131-2/+2
* treewide: remove unused with statements from maintainer lists•••$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!' Jörg Thalheim2024-07-291-1/+1
* treewide: Remove indefinite article from meta.description•••nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/' Alexis Hildebrandt2024-06-091-1/+1
* python3Packages: format with nixfmtMartin Weinelt2024-05-221-30/+29
* python312Packages.alembic: use pyproject = trueTomaSajt2024-05-071-3/+3
* python311Packages.alembic: test with pytest_7Martin Weinelt2024-03-271-2/+2
* python3Packages.alembic: 1.13.0 -> 1.13.1Martin Weinelt2024-03-121-2/+2
* Merge master into staging-nextgithub-actions[bot]2024-01-031-6/+18
|\
| * python311Packages.alembic: adjust dependencies, use pep517 builderMartin Weinelt2024-01-031-6/+18
* | python3Packages.alembic: 1.12.0 -> 1.13.0Martin Weinelt2023-12-201-2/+2
|/
* python3Packages.alembic: set meta.mainProgramRaphael Robatsch2023-12-131-0/+1
* python3Packages.alembic: 1.9.4 -> 1.12.0Martin Weinelt2023-09-271-2/+2
* python3.pkgs: Migrate fetchers to use hash•••when they already rely on SRI hashes. Martin Weinelt2023-03-031-1/+1
* python3Packages.alembic: 1.9.1 -> 1.9.4Martin Weinelt2023-03-031-2/+2
* python310Packages.mako: Normalize attribute, pname, dirnameMartin Weinelt2023-02-191-2/+2
* 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.alembic: 1.8.1 -> 1.9.1Martin Weinelt2023-01-051-2/+2
* python3Packages.alembic: 1.7.7 -> 1.8.1Martin Weinelt2022-07-211-2/+2
* treewide: remove redundant numprocesses pytest-xdist parameter•••Including the pytest-xdist package automatically configures numprocesses to $NIX_BUILD_CORES, so specifying these on a package level has become redundant. Martin Weinelt2022-04-151-4/+0
* python3Packages.alembic: 1.7.6 -> 1.7.7Martin Weinelt2022-04-131-2/+2
* python3Packages.alembic: 1.7.5 -> 1.7.6Martin Weinelt2022-03-141-2/+2
* python3Packages.alembic: 1.7.4 -> 1.7.5Jonathan Ringer2021-11-191-4/+3
* python3Packages.alembic: 1.7.1 -> 1.7.4Martin Weinelt2021-10-111-2/+2
* python3Packages.alembic: 1.6.5 -> 1.7.1Martin Weinelt2021-09-011-9/+39
* pythonPackages: deprecate pytestcov aliasSandro Jäckel2021-07-211-2/+2
* treewide: use pythonPackages.python-dateutil instead of pythonPackages.dateutilRobert Schütz2021-07-031-2/+2
* python3Packages.alembic: 1.5.8 -> 1.6.5Martin Weinelt2021-06-211-2/+2
* python3Packages.alembic: 1.4.3 -> 1.5.8Frederik Rietdijk2021-04-031-2/+2
* treewide: remove stdenv where not neededPavol Rusnak2021-01-251-1/+1
* treewide: with stdenv.lib; in meta -> with lib;•••Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix Profpatsch2021-01-111-2/+2
* python3Packages.alembic: 1.4.2 -> 1.4.3Frederik Rietdijk2020-11-051-2/+2
* python: alembic: 1.3.3 -> 1.4.2Frederik Rietdijk2020-06-111-2/+2
* python3Packages.alembic: 1.3.2 -> 1.3.3Frederik Rietdijk2020-05-111-2/+2
* treewide: Per RFC45, remove all unquoted URLsMichael Reilly2020-04-101-1/+1
* python: alembic: 1.2.1 -> 1.3.2Frederik Rietdijk2019-12-301-2/+2
* pythonPackage.alembic: disable non-existent testsJonathan Ringer2019-10-271-0/+3
* python: alembic: 1.0.11 -> 1.2.1Frederik Rietdijk2019-10-271-2/+2
* python: alembic: 1.0.10 -> 1.0.11Frederik Rietdijk2019-10-181-2/+2
* python-alembic: add missing 'setuptools' to propagatedBuildInputs•••As a side-effect of f7e28bf5d8181926e600a222cb70180519d09726, the build no longer propagated 'setuptools', which is a run-time dependency. See https://github.com/NixOS/nixpkgs/pull/68314 for further details. Peter Simons2019-09-111-2/+2
* python: alembic: 1.0.9 -> 1.0.10Frederik Rietdijk2019-06-151-2/+2
* python: alembic: 1.0.7 -> 1.0.9Frederik Rietdijk2019-04-181-2/+2
* python: alembic: 1.0.6 -> 1.0.7Frederik Rietdijk2019-02-141-2/+2
* python: alembic: 1.0.3 -> 1.0.6Frederik Rietdijk2019-01-181-2/+2