1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "wget";
9 version = "3.2";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "35e630eca2aa50ce998b9b1a127bb26b30dfee573702782aa982f875e3f16061";
15 extension = "zip";
16 };
17
18 meta = {
19 description = "Pure python download utility";
20 homepage = "https://bitbucket.org/techtonik/python-wget/";
21 license = with lib.licenses; [ unlicense ];
22 maintainers = with lib.maintainers; [ prusnak ];
23 };
24}