summaryrefslogtreecommitdiff
path: root/maintainers/scripts/update-python-libraries
AgeCommit message (Collapse)Author
2024-12-05update-python-libraries: fix helper script after by-name migrationMartin Weinelt
2023-02-27update-python-libraries: Add support for fetchgitMartin Weinelt
Previously when packages that required the git fetcher were updated, we would wrongly rely on `nix-prefetch-url`, which would reliable break the hash. Instead we need to use `nix-prefetch-git` to determine the proper hash, when the relevant attributes are present.
2018-12-23fix update-python-librariesFrederik Rietdijk
2018-12-07buildPython*: add updateScript to passthruFrederik Rietdijk
All Python packages now have an updateScript. The script calls `update-python-libraries` and passes it the position of the derivation expression obtained using `meta.position`. This works fine in case a Nix expression represents only a single derivation. If there are more in it, `update-python-libraries` will fail.
2018-07-06maintainers/scripts/update-python-libraries: compare versions semantically ↵Robert Schütz
instead of lexicographically (#43120)
2018-03-10Python: fix update script for nix 2.0Frederik Rietdijk
2017-12-30update-python-libraries: commit updates and specify update kindFrederik Rietdijk
This commit introduces two new features: 1. specify with --target whether major, minor or patch updates should be made 2. use --commit to create commits for each of the updates
2017-11-05Python update-python-libraries: fetch and update asynchronouslyFrederik Rietdijk
2017-07-17update-python-libraries script: don't forget to break when we actually find ↵Frederik Rietdijk
an update
2017-07-03Python: fix update script in case no PyPI releases are available for a given ↵Frederik Rietdijk
version
2017-06-06Python: improve update scriptFrederik Rietdijk
- remove dead code - improve readability - skip fetchFromGitHub (#26320)
2017-05-27Python: fix update scriptFrederik Rietdijk
- use correct extension - do not update expressions that have an url that does not contain pypi - show warning in case request fails
2017-05-27Python: update script for packagesFrederik Rietdijk
This script determines whether there is an update available for the package and if so, updates the version and sha256 attributes. This only works for packages that have their own expression, and `pname` and `sha256` attribute.