3
0
Fork 0
forked from mirrors/nixpkgs

ftputil init at 3.3

This commit is contained in:
michael bishop 2016-02-01 11:39:11 -04:00
parent a7b7ac8bfb
commit c2fee6405f
No known key found for this signature in database
GPG key ID: C294FC1A485A409A

View file

@ -5241,6 +5241,25 @@ in modules // {
};
};
ftputil = buildPythonPackage rec {
version = "3.3";
name = "ftputil-${version}";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/f/ftputil/${name}.tar.gz";
sha256 = "1714w0v6icw2xjx5m54yv2qgkq49qwxwllq4gdb7wkz25iiapr8b";
};
disabled = isPy3k;
meta = {
description = "High-level FTP client library (virtual file system and more)";
homepage = https://pypi.python.org/pypi/ftputil;
platforms = platforms.linux;
license = licenses.bsd2; # "Modified BSD licence, says pypi"
};
};
fudge = buildPythonPackage rec {
name = "fudge-1.1.0";
src = pkgs.fetchurl {