mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 12:15:34 +03:00
update-python-libraries script: don't forget to break when we actually find an update
This commit is contained in:
parent
c0cf19608f
commit
d2aa638ee2
1 changed files with 1 additions and 0 deletions
|
@ -91,6 +91,7 @@ def _get_latest_version_pypi(package, extension):
|
||||||
if release['filename'].endswith(extension):
|
if release['filename'].endswith(extension):
|
||||||
# TODO: In case of wheel we need to do further checks!
|
# TODO: In case of wheel we need to do further checks!
|
||||||
sha256 = release['digests']['sha256']
|
sha256 = release['digests']['sha256']
|
||||||
|
break
|
||||||
else:
|
else:
|
||||||
sha256 = None
|
sha256 = None
|
||||||
return version, sha256
|
return version, sha256
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue