Commit Graph

8 Commits

Author SHA1 Message Date
Jonathan Ringer
70e2f0805f
python2Packages.venusian: disable python2 2020-08-15 16:15:59 -07:00
Michael Reilly
84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01: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
2b1370a353 python3Packages.venusian: add pytestcov test dependency 2019-12-30 16:46:50 +01:00
Frederik Rietdijk
33f7172c0d python: venusian: 1.2.0 -> 3.0.0 2019-12-30 16:46:48 +01:00
Rok Garbas
65781e204d
Remove me (garbas) as maintainer since I don't have much time to maintain anything 2019-07-03 11:27:39 +02:00
Frederik Rietdijk
ff48fd0bf6 python: venusian: 1.1.0 -> 1.2.0 2019-02-17 14:40:45 +01:00
Chris Ostrouchov
0f4383eae5 pythonPackages.venusian: 1.0 -> 1.1.0
Added tests and refactored moved to python-modules
2018-10-17 07:46:55 +02:00