query
On this page

fetchPypi

pkgs.fetchPypi

Functor
Docs pulled from | This Revision | 10 minutes ago

No reference documentation found yet.

Contribute now!


Contribute
Enhance the ecosystem with your expertise! Contribute to fill the gaps in documentation. Your input can make a difference.

Noogle detected

This is a Functor

Learn about functors

Implementation

The following is the current implementation of this function.

{
    format ? "setuptools",
    sha256 ? "",
    hash ? "",
    ...
  }@attrs:
  let
    url = computeUrl (
      builtins.removeAttrs attrs [
        "sha256"
        "hash"
      ]
    );
  in
  fetchurl {
    inherit url sha256 hash;
  }