nixpkgs/pkgs/development/python-modules/wget/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

24 lines
520 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "wget";
version = "3.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "35e630eca2aa50ce998b9b1a127bb26b30dfee573702782aa982f875e3f16061";
extension = "zip";
};
meta = {
description = "Pure python download utility";
homepage = "https://bitbucket.org/techtonik/python-wget/";
license = with lib.licenses; [ unlicense ];
maintainers = with lib.maintainers; [ prusnak ];
};
}