File tree 1 file changed +9
-3
lines changed
1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -246,7 +246,12 @@ def from_json(
246
246
if file_url is None :
247
247
return None
248
248
249
+ url = _ensure_quoted_url (urllib .parse .urljoin (page_url , file_url ))
250
+ pyrequire = file_data .get ("requires-python" )
249
251
yanked_reason = file_data .get ("yanked" )
252
+ dist_info_metadata = file_data .get ("dist-info-metadata" )
253
+ hashes = file_data .get ("hashes" , {})
254
+
250
255
# The Link.yanked_reason expects an empty string instead of a boolean.
251
256
if yanked_reason and not isinstance (yanked_reason , str ):
252
257
yanked_reason = ""
@@ -255,11 +260,12 @@ def from_json(
255
260
yanked_reason = None
256
261
257
262
return cls (
258
- _ensure_quoted_url ( urllib . parse . urljoin ( page_url , file_url )) ,
263
+ url ,
259
264
comes_from = page_url ,
260
- requires_python = file_data . get ( "requires-python" ) ,
265
+ requires_python = pyrequire ,
261
266
yanked_reason = yanked_reason ,
262
- hashes = file_data .get ("hashes" , {}),
267
+ hashes = hashes ,
268
+ dist_info_metadata = dist_info_metadata ,
263
269
)
264
270
265
271
@classmethod
You can’t perform that action at this time.
0 commit comments