summary refs log tree commit diff
path: root/pkgs/development/python-modules/wget/default.nix
blob: 2ffd747d04dd5e7fd182f7b9600e37f9ae4585c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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";
    homepage = https://bitbucket.org/techtonik/python-wget/;
    license = with lib.licenses; [ unlicense ];
    maintainers = with lib.maintainers; [ prusnak ];
  };
}