mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
23 lines
495 B
Nix
23 lines
495 B
Nix
{ 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 ];
|
|
};
|
|
}
|