nixpkgs/pkgs/development/python-modules/wget/default.nix

23 lines
493 B
Nix
Raw Normal View History

2019-07-31 22:31:10 +01:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "wget";
version = "3.2";
src = fetchPypi {
inherit pname version;
sha256 = "35e630eca2aa50ce998b9b1a127bb26b30dfee573702782aa982f875e3f16061";
extension = "zip";
};
meta = {
description = "Pure python download utility";
2020-01-10 20:17:37 +00:00
homepage = https://bitbucket.org/techtonik/python-wget/;
2019-07-31 22:31:10 +01:00
license = with lib.licenses; [ unlicense ];
maintainers = with lib.maintainers; [ prusnak ];
};
}