summaryrefslogtreecommitdiff
path: root/pkgs/servers/http/apache-modules/mod_python/default.nix
AgeCommit message (Collapse)Author
2026-01-28apacheHttpdPackages.mod_python: 3.5.0.5 -> 3.5.0.7R. Ryantm
2025-11-11apacheHttpdPackages.mod_python: 3.5.0.4 -> 3.5.0.5R. Ryantm
2025-07-24treewide: run nixfmt 1.0.0Wolfgang Walther
2025-06-27apacheHttpdPackages.mod_python: mark broken on darwinPeder Bergebakken Sundt
2025-04-01treewide: Format all Nix filesSilvan Mosberger
Format all Nix files using the officially approved formatter, making the CI check introduced in the previous commit succeed: nix-build ci -A fmt.check This is the next step of the of the [implementation](https://github.com/NixOS/nixfmt/issues/153) of the accepted [RFC 166](https://github.com/NixOS/rfcs/pull/166). This commit will lead to merge conflicts for a number of PRs, up to an estimated ~1100 (~33%) among the PRs with activity in the past 2 months, but that should be lower than what it would be without the previous [partial treewide format](https://github.com/NixOS/nixpkgs/pull/322537). Merge conflicts caused by this commit can now automatically be resolved while rebasing using the [auto-rebase script](https://github.com/NixOS/nixpkgs/tree/8616af08d915377bd930395f3b700a0e93d08728/maintainers/scripts/auto-rebase). If you run into any problems regarding any of this, please reach out to the [formatting team](https://nixos.org/community/teams/formatting/) by pinging @NixOS/nix-formatting.
2025-01-07apacheHttpdPackages.mod_python: 3.5.0.2 -> 3.5.0.4R. Ryantm
2025-01-04treewide: migrate fetchgit `rev = "refs/tags/..."` to `tag`Peder Bergebakken Sundt
2024-11-02apacheHttpdPackages.mod_python: fix for python3.12zi3m5f
adding distutils, packaging and setuptools to fix: - ModuleNotFoundError: No module named 'distutils' - ModuleNotFoundError: No module named 'packaging' - error: invalid command 'install' and ensureNewerSourcesForZipFilesHook for: - ValueError: ZIP does not support timestamps before 1980
2024-11-02apacheHttpdPackages.mod_python: nixfmtzi3m5f
2024-09-25treewide: replace `stdenv.is` with `stdenv.hostPlatform.is`Artturin
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" ```
2024-07-29treewide: remove unused with statements from maintainer listsJörg Thalheim
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
2024-06-09treewide: Remove indefinite article from meta.descriptionAlexis Hildebrandt
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/'
2024-03-22apacheHttpdPackages.mod_python: unstable-2022-10-18 -> 3.5.0.2Anthony Roussel
https://github.com/grisha/mod_python/blob/3.5.0.2/NEWS
2024-03-22apacheHttpdPackages.mod_python: add passthru.updateScriptAnthony Roussel
2024-03-19treewide: add meta.mainProgram to packages with a single binarystuebinm
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
2023-01-22treewide: replace http by https when https is a permanent redirectionFerry Jérémie
2022-12-23mod_python: 3.5.0 -> unstable-2022-10-18Thiago Kenji Okada
2021-05-11apacheHttpdPackages.mod_python: fix darwin buildStéphan Kochen
2021-01-15pkgs/servers: stdenv.lib -> libBen Siraphob
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly
2019-12-30treewide: installFlags is a listRobin Gloster
2016-11-24mod_python: use python2Frederik Rietdijk
2016-08-02treewide: Add lots of meta.platformsTuomas Tynkkynen
Build-tested on x86_64 Linux & Mac.
2015-05-25mod_python: Avoid that git is called to generate a versionJohannes Bornhold
This failed when building mod_python and resulted in a broken value being included in the file "version.py".
2014-11-07mod_python: Update to 3.5.0Eelco Dolstra
This fixes building against Apache 2.4.
2012-01-18* "ensureDir" -> "mkdir -p". "ensureDir" is a rather pointlessEelco Dolstra
function, so obsolete it. svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
2008-10-06* Apache httpd: build against apr, aputil and pcre instead of usingEelco Dolstra
its own copies. svn path=/nixpkgs/trunk/; revision=12971
2008-02-05* Updated Apache-related packages.Eelco Dolstra
svn path=/nixpkgs/trunk/; revision=10502
2007-08-24* Reverted r6713, r6711, r4623, r3660, r2237. There rewrote fetchurlEelco Dolstra
URLs to http://nix.cs.uu.nl/dist/tarballs. With content-addressable mirror support (r9190, NIXPKGS-70) this is no longer necessary: fetchurl will try to download from that location automatically. So we can keep the original URLs. svn path=/nixpkgs/trunk/; revision=9192
2006-10-12* Copy a bunch of files to nix.cs.uu.nl.Eelco Dolstra
svn path=/nixpkgs/trunk/; revision=6711
2006-09-06* mod_python 3.2.10. Removed the patch to get it to work with Apache 2.2.Eelco Dolstra
svn path=/nixpkgs/trunk/; revision=6473
2006-02-28* Apache updated to 2.2.0.Eelco Dolstra
* mod_python updated to 3.2.8, with a patch to get it to work with Apache 2.2.x. svn path=/nixpkgs/trunk/; revision=4927
2006-01-30* Copy lots of files to nix.cs.uu.nl.Eelco Dolstra
svn path=/nixpkgs/trunk/; revision=4623
2006-01-15* Added mod_python.Eelco Dolstra
svn path=/nixpkgs/trunk/; revision=4549