pythonPackages.twine: init at 1.8.1

This commit is contained in:
Frederik Rietdijk 2016-10-06 13:36:07 +02:00
parent 5f64eacf6a
commit c6e21c90ea

View File

@ -24975,6 +24975,28 @@ in modules // {
};
};
twine = buildPythonPackage rec {
name = "twine-${version}";
version = "1.8.1";
src = pkgs.fetchurl {
url = "mirror://pypi/t/twine/${name}.tar.gz";
sha256 = "68b663691a947b844f92853c992d42bb68b6333bffc9ab7f661346b001c1da82";
};
propagatedBuildInputs = with self; [ clint pkginfo requests2 requests_toolbelt ];
# Requires network
doCheck = false;
meta = {
description = "Collection of utilities for interacting with PyPI";
homepage = https://github.com/pypa/twine;
license = licenses.asl20;
maintainer = with maintainers; [ fridh ];
};
};
twisted = buildPythonPackage rec {
name = "Twisted-${version}";