Commit Graph

7 Commits

Author SHA1 Message Date
Silvan Mosberger
80a2740991
Merge pull request #78265 from Synthetica9/https-homepages
treewide: fix redirected urls
2020-01-27 15:00:53 +01:00
Jonathan Ringer
3671932188 python38Packages.uvloop: disable
Tests hang, indicating race condition
2020-01-22 18:17:02 -08: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
Jonathan Ringer
dd79af2216 python3Packages.uvloop: 0.13.0 -> 0.14.0 2019-11-12 08:54:22 -08:00
Fabian Möller
69ee17f060
uvloop: fix darwin build 2019-09-13 23:11:56 +02:00
Dima
a88976d222 pythonPackages.uvloop: 0.12.2 -> 0.13.0 (#67735)
* As mentioned in https://github.com/NixOS/nixpkgs/issues/67492
the build was broken after an update of openssl versions.

* Fixes a flake8 unit-test case that requires a flake8 config
which is not shipped with the distribution.

* Fixes build on darwin.
2019-09-01 22:53:50 -04:00
Chris Ostrouchov
b9ccbbffa7
pythonPackages.uvloop: init at 0.12.2 2019-05-08 07:41:51 -04:00