Skip to content
Snippets Groups Projects
Commit 27e55115 authored by vlorentz's avatar vlorentz
Browse files

cran and nixguix: Make known_artifact_to_extid static

Like the PyPI and NPM loader.

It allows scripts to use the method without creating a loader instance.
parent e48ced02
No related branches found
Tags v0.22.2
1 merge request!201cran and nixguix: Make known_artifact_to_extid static
......@@ -88,7 +88,8 @@ class CRANLoader(PackageLoader[CRANPackageInfo]):
if version == p_info.version:
yield release_name(version), p_info
def known_artifact_to_extid(self, known_artifact: Dict) -> Optional[PartialExtID]:
@staticmethod
def known_artifact_to_extid(known_artifact: Dict) -> Optional[PartialExtID]:
return CRANPackageInfo.from_metadata(known_artifact["extrinsic"]["raw"]).extid()
def build_revision(
......
......@@ -155,7 +155,8 @@ class NixGuixLoader(PackageLoader[NixGuixPackageInfo]):
ret[revision.id] = revision.metadata
return ret
def known_artifact_to_extid(self, known_artifact: Dict) -> Optional[PartialExtID]:
@staticmethod
def known_artifact_to_extid(known_artifact: Dict) -> Optional[PartialExtID]:
try:
value = known_artifact["extrinsic"]["raw"]["integrity"].encode("ascii")
except KeyError as e:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment