1{ lib
2, buildPythonPackage
3, fetchPypi
4, pkginfo
5, requests
6, requests_toolbelt
7, tqdm
8, pyblake2
9, readme_renderer
10}:
11
12buildPythonPackage rec {
13 pname = "twine";
14 version = "1.13.0";
15
16 src = fetchPypi {
17 inherit pname version;
18 sha256 = "d6c29c933ecfc74e9b1d9fa13aa1f87c5d5770e119f5a4ce032092f0ff5b14dc";
19 };
20
21 propagatedBuildInputs = [ pkginfo requests requests_toolbelt tqdm pyblake2 readme_renderer ];
22
23 # Requires network
24 doCheck = false;
25
26 meta = {
27 description = "Collection of utilities for interacting with PyPI";
28 homepage = https://github.com/pypa/twine;
29 license = lib.licenses.asl20;
30 maintainers = with lib.maintainers; [ fridh ];
31 };
32}