Skip to content
This repository was archived by the owner on Oct 7, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,8 @@ Command line options

``--default-overrides/--no-default-overrides``
Pull in overrides from
``https://github.com/nix-community/pypi2nix-overrides``. We
currently discourage the use of this feature since these overrides
are not maintained.
``https://github.com/nix-community/pypi2nix-overrides``. This
feature is enabled by default.

``--wheels-cache/-W TEXT``
A location where prebuilt wheels can be found. This option will
Expand Down
1 change: 0 additions & 1 deletion src/pypi2nix/wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ def from_wheel_directory_path(
metadata_file, "r", encoding="ascii", errors="surrogateescape"
) as headers:
metadata = email.parser.Parser().parse(headers)
print(metadata)
license_string = str_from_message(metadata, "license")
if license_string is None:
license_string = ""
Expand Down