summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/apscheduler (follow)
Commit message (Expand)AuthorAgeFilesLines
* 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
* python3Packages.apscheduler: add meta.changelogRobert Schütz2025-11-081-2/+3
* python3Packages.apscheduler: 3.11.0 -> 3.11.1R. Ryantm2025-11-081-2/+2
* python3Packages.apscheduler: pin pytest 8.3Martin Weinelt2025-08-091-2/+6
* treewide: run nixfmt 1.0.0Wolfgang Walther2025-07-241-12/+11
* python3Packages.apscheduler: 3.10.4 -> 3.11.0Martin Weinelt2025-01-271-15/+10
* treewide: replace `stdenv.is` with `stdenv.hostPlatform.is`•••In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ``` Artturin2024-09-251-1/+1
* 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
* python3Packages: format with nixfmtMartin Weinelt2024-05-221-29/+30
* python312Packages.apscheduler: use pyproject = trueTomaSajt2024-05-071-4/+5
* python311Packages.apscheduler: 3.10.1 -> 3.10.4R. Ryantm2023-08-211-2/+2
* python310Packages.apscheduler: 3.10.0 -> 3.10.1R. Ryantm2023-06-051-2/+2
* python3Packages.apscheduler: 3.9.1.post1 -> 3.10.0Martin Weinelt2023-03-031-2/+2
* python310Packages.apscheduler: Normalize attribute, pname and locationMartin Weinelt2023-02-191-0/+78