In the latest nixpkgs revision, pip
has been updated to 20.1.1. I noticed that when I use pip freeze
. I don’t get the original requirements format anymore. Instead I get direct references: PEP 440 -- Version Identification and Dependency Specification | Python.org
Like this:
absl-py @ file:///build/absl-py-0.9.0/dist/absl_py-0.9.0-py3-none-any.whl
Any ideas why this change happened?
The old way of:
absl-py==0.9.0
Was a lot more useful.