summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/glymur/default.nix (follow)
Commit message (Expand)AuthorAgeFilesLines
* python3Packages.glymur: 0.14.6 -> 0.14.7R. Ryantm2026-02-051-2/+2
* python3Packages.glymur: 0.14.4 -> 0.14.6R. Ryantm2026-01-281-2/+2
* python3Packages.glymur: 0.13.6 -> 0.14.4•••Diff: https://github.com/quintusdias/glymur/compare/v0.13.6...v0.14.4 Changelog: https://github.com/quintusdias/glymur/blob/refs/tags/v0.14.4/CHANGES.txt Gaetan Lepage2026-01-211-21/+26
* treewide: migrate my python packages to use finalAttrsTomaSajt2026-01-161-4/+4
* 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: replace substituteAll with replaceVarsWolfgang Walther2025-02-101-3/+2
* python312Packages.glymur: 0.13.4 -> 0.13.6•••Diff: https://github.com/quintusdias/glymur/compare/refs/tags/v0.13.6...v0.13.6 Changelog: https://github.com/quintusdias/glymur/blob/refs/tags/v0.13.6/CHANGES.txt Fabian Affolter2025-01-131-6/+13
* treewide: migrate fetchgit `rev = "refs/tags/..."` to `tag`Peder Bergebakken Sundt2025-01-041-1/+1
* 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-2/+2
* python312Packages.glymur: 0.13.2 -> 0.13.4TomaSajt2024-07-071-3/+3
* python3Packages: format with nixfmtMartin Weinelt2024-05-221-20/+17
* python312Packages.glymur: 0.12.5 -> 0.13.2, unbreak, refactorTomaSajt2024-05-091-16/+31
* treewide: drop inactive maintainer costrouc from all python packagesSandro Jäckel2023-07-181-1/+1
* python310Packages.scikit-image: rename from scikitimage•••to match the pname and create an alias for the former name. Martin Weinelt2023-05-141-2/+2
* python311Packages.glymur: 0.12.4 -> 0.12.5•••Changelog: https://github.com/quintusdias/glymur/blob/v0.12.5/CHANGES.txt Fabian Affolter2023-05-071-2/+2
* python310Packages.glymur: 0.9.3 -> 0.12.4•••Diff: https://github.com/quintusdias/glymur/compare/refs/tags/v0.9.3...v0.12.4 Changelog: https://github.com/quintusdias/glymur/blob/v0.12.4/CHANGES.txt Fabian Affolter2023-05-021-8/+11
* python310Packages.glymur: modernizeFabian Affolter2023-05-021-10/+16
* 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
* treewide: optional -> optionals where the argument is a list•••the argument to optional should not be list Artturin2022-10-101-1/+1
* glymur: fix buildVikram Narayanan2021-11-241-0/+2
* python3Packages.glymur: 0.8.18 -> 0.9.3Robert T. McGibbon2021-05-041-7/+12
* pythonPackages.glymur: remove unused inputSandro Jäckel2021-02-161-1/+0
* pkgs/development/python-modules: stdenv.lib -> libPavol Rusnak2021-01-241-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
* treewide: Per RFC45, remove all unquoted URLsMichael Reilly2020-04-101-1/+1
* pythonPackages.glymur: init at 0.8.18Chris Ostrouchov2019-07-171-0/+51