pythonPackages.wget: init at 3.2
This commit is contained in:
22
pkgs/development/python-modules/wget/default.nix
Normal file
22
pkgs/development/python-modules/wget/default.nix
Normal file
@@ -0,0 +1,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 = http://bitbucket.org/techtonik/python-wget/;
|
||||
license = with lib.licenses; [ unlicense ];
|
||||
maintainers = with lib.maintainers; [ prusnak ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user