1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythonPackages.twine: 1.11.0 -> 1.12.1

This commit is contained in:
Chris Ostrouchov 2018-10-25 14:16:20 -04:00 committed by Frederik Rietdijk
parent 9406b36e9d
commit a501a0e172

View file

@ -6,18 +6,19 @@
, requests_toolbelt
, tqdm
, pyblake2
, readme_renderer
}:
buildPythonPackage rec {
pname = "twine";
version = "1.11.0";
version = "1.12.1";
src = fetchPypi {
inherit pname version;
sha256 = "09cz9v63f8mrs4znbjapjj2z3wdfryq8q364zm0wzjhbzzcs9n9g";
sha256 = "7d89bc6acafb31d124e6e5b295ef26ac77030bf098960c2a4c4e058335827c5c";
};
propagatedBuildInputs = [ pkginfo requests requests_toolbelt tqdm pyblake2 ];
propagatedBuildInputs = [ pkginfo requests requests_toolbelt tqdm pyblake2 readme_renderer ];
# Requires network
doCheck = false;