Commit Graph

10 Commits

Author SHA1 Message Date
Pavol Rusnak
a6ce00c50c
treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
Profpatsch
4a7f99d55d 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
2021-01-11 10:38:22 +01:00
Sandro Jäckel
c1011fcea4
python3Packages.web: 0.61 -> 0.62, fix build 2020-12-23 20:21:56 +01:00
Frederik Rietdijk
a794a6db3e python3Packages.web.py: 0.61 -> 0.62 2020-12-01 14:44:22 +01:00
Frederik Rietdijk
fbdc7496e4 python: web.py: 0.51 -> 0.61 2020-08-16 19:31:20 +02:00
Frederik Rietdijk
f28611be89 python: web.py: 0.40 -> 0.51 2020-06-11 10:00:24 +02:00
Patrick Hilhorst
593e11fd94
treewide: fix redirected urls
According to https://repology.org/repository/nix_unstable/problems, we have a
lot of packages that have http links that redirect to https as their homepage.
This commit updates all these packages to use the https links as their
homepage.

The following script was used to make these updates:

```

curl https://repology.org/api/v1/repository/nix_unstable/problems \
    | jq '.[] | .problem' -r \
    | rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \
    | sort | uniq > script.sed

find -name '*.nix' | xargs -P4 -- sed -f script.sed -i
```
2020-01-22 11:26:22 +01:00
Frederik Rietdijk
acfb5cc33d python: web.py: 0.39 -> 0.40 2019-10-27 16:26:55 +01:00
Frederik Rietdijk
24fa4efc1d python: web.py: 0.37 -> 0.39 2018-12-03 16:50:36 +01:00
Chris Ostrouchov
e273fa73ed
pythonPackages.web: refactor move to python-modules 2018-10-30 00:50:59 -04:00