pythonPackages.wget: init at 3.2

This commit is contained in:
Pavol Rusnak 2019-07-31 23:31:10 +02:00
parent 0a477846af
commit 509bf5d1cc
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
2 changed files with 24 additions and 0 deletions

View 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 ];
};
}

View File

@ -6112,6 +6112,8 @@ in {
stringcase = callPackage ../development/python-modules/stringcase { };
webrtcvad = callPackage ../development/python-modules/webrtcvad { };
wget = callPackage ../development/python-modules/wget { };
});
in fix' (extends overrides packages)