Commit Graph

13 Commits

Author SHA1 Message Date
Frederik Rietdijk
843fa07a49 python: textacy: 0.9.1 -> 0.10.0 2020-06-11 10:00:22 +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
Jonathan Ringer
92ef9bb692 python3Packages.textacy: 0.6.3 -> 0.9.1 2019-09-04 01:28:05 -07:00
Jonathan Ringer
918e56446e pythonPackages.textacy: mark as broken 2019-08-01 22:49:06 +00:00
Frederik Rietdijk
85c6c723f0 python: textacy: 0.6.2 -> 0.6.3 2019-04-18 12:42:42 +02:00
worldofpeace
c259cbe19f pythonPackages.textacy: fix build 2019-01-28 20:33:46 +00:00
Frederik Rietdijk
a0fa911892 python: textacy: 0.6.1 -> 0.6.2 2018-07-26 12:43:11 +02:00
volth
52f53c69ce pkgs/*: remove unreferenced function arguments 2018-07-21 02:48:04 +00:00
Frederik Rietdijk
ced21f5e1a pythonPackages: remove name attribute`
The `buildPython*` function computes name from `pname` and `version`.
This change removes `name` attribute from all expressions in
`pkgs/development/python-modules`.

While at it, some other minor changes were made as well, such as
replacing `fetchurl` calls with `fetchPypi`.
2018-06-23 18:14:26 +02:00
Frederik Rietdijk
081a805d15 python: textacy: 0.6.0 -> 0.6.1 2018-05-10 10:09:14 +02:00
Frederik Rietdijk
5ead05c0a8 python: textacy: 0.5.0 -> 0.6.0 2018-02-26 19:03:29 +01:00
Frederik Rietdijk
a20ea7a4b3 python: textacy: 0.4.1 -> 0.5.0 2017-12-31 10:55:20 +01:00
Rodney Lorrimar
3b1877f4c0 pythonPackages.textacy: init at 0.4.1 2017-09-16 09:23:16 +01:00