summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/configparser (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge master into staging-nextnixpkgs-ci[bot]2025-03-201-2/+2
|\
| * python312Packages.configparser: 7.1.0 -> 7.2.0R. Ryantm2025-03-121-2/+2
* | python3Packages.configparser: use the locale specification from buildPythonPa...Yueh-Shun Li2025-03-081-5/+0
|/
* treewide: migrate fetchgit `rev = "refs/tags/..."` to `tag`Peder Bergebakken Sundt2025-01-041-1/+1
* python3Packages.configparser: 7.0.0 -> 7.1.0Martin Weinelt2024-10-131-2/+2
* 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
* Merge pull request #304088 from r-ryantm/auto-update/python312Packages.config...•••python312Packages.configparser: 6.0.1 -> 7.0.0Peder Bergebakken Sundt2024-06-101-2/+2
|\
| * python312Packages.configparser: 6.0.1 -> 7.0.0R. Ryantm2024-04-141-2/+2
* | treewide: Remove ending period from meta.description•••nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/' Alexis Hildebrandt2024-06-091-1/+1
* | python3Packages: format with nixfmtMartin Weinelt2024-05-221-7/+8
|/
* python3Packages.configparser: 6.0.0 -> 6.0.1Martin Weinelt2024-03-121-13/+19
* python3Packages.configparser: 5.3.0 -> 6.0.0Martin Weinelt2023-09-271-2/+8
* python3.pkgs: Migrate fetchers to use hash•••when they already rely on SRI hashes. Martin Weinelt2023-03-031-1/+1
* 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.configparser: 5.2.0 -> 5.3.0Martin Weinelt2022-09-181-7/+8
* python2.pkgs: move expressions into python2-modules/ folder•••Another step in further separating python2 from python3. Frederik Rietdijk2022-01-161-26/+0
* python3Packages.configparser: 5.1.0 -> 5.2.0Jonathan Ringer2021-12-141-2/+2
* python3Packages.configparser: 5.0.2 -> 5.1.0Jonathan Ringer2021-11-301-2/+2
* python3Packages: provide setuptools-scm with toml[i] by default and remove du...•••Some packages seem to still require toml despite setuptools-scm having switched to tomli. If it is missing the version number in dist.into is set to 0.0.0 and silently all version pins break. Sandro Jäckel2021-09-011-4/+2
* treewide: setuptools_scm -> setuptools-scmSandro Jäckel2021-06-032-4/+4
* python3Packages.configparser: 5.0.1 -> 5.0.2Frederik Rietdijk2021-04-031-2/+2
* 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-112-4/+4
* python3Packages.configparser: 5.0.0 -> 5.0.1Frederik Rietdijk2020-11-051-2/+2
* python: editorconfig fixeszowoq2020-08-271-1/+1
* python3.pkgs.configparser: fix buildFrederik Rietdijk2020-06-111-2/+4
* python2.pkgs.configparser: keep at 4.0.2 for python 2Frederik Rietdijk2020-06-111-0/+26
* python: configparser: 4.0.2 -> 5.0.0Frederik Rietdijk2020-06-111-2/+2
* treewide: Per RFC45, remove all unquoted URLsMichael Reilly2020-04-101-1/+1
* python: configparser: 3.7.5 -> 4.0.2Frederik Rietdijk2019-10-271-3/+5
* python: configparser: 3.7.4 -> 3.7.5Frederik Rietdijk2019-10-181-2/+2
* [treewide] delete unused patchesc0bw3b2019-05-041-42/+0
* python: configparser: 3.7.3 -> 3.7.4Frederik Rietdijk2019-04-181-2/+2
* python: configparser: 3.7.1 -> 3.7.3Frederik Rietdijk2019-02-231-2/+2
* python.pkgs.configparser: fix darwin regression•••We can use C.UTF-8 on Linux but not yet on Darwin. Frederik Rietdijk2019-02-221-1/+1
* python: configparser: 3.5.0 -> 3.7.1Frederik Rietdijk2019-02-171-7/+8
* pkgs/*: remove unreferenced function argumentsvolth2018-07-211-1/+1
* python.pkgs.configparser: build with all Python versions•••I think the disabled condition was accidentally modified in ecc939eb194b49f86707c8a215b60968f9b8a335 configparser is a backport of 3.2 functionality. While it is only intended for Python < 3.2, it works fine with other versions. Even with pypy, nowadays. Frederik Rietdijk2018-04-051-1/+0
* pythonPackages.configparser: Move to own fileElis Hirwing2018-04-041-0/+24
* pythonPackages.configparser: fix with namespace packagesFrederik Rietdijk2017-03-141-0/+42