aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/twine/default.nix
blob: 47f9fe1a034ea06c80153b8033ce4474871959cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{ lib, buildPythonPackage, fetchPypi, pythonOlder
, importlib-metadata
, keyring
, pkginfo
, pyblake2
, readme_renderer
, requests
, requests_toolbelt
, setuptools_scm
, tqdm
, colorama
, rfc3986
}:

buildPythonPackage rec {
  pname = "twine";
  version = "3.2.0";
  disabled = pythonOlder "3.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "34352fd52ec3b9d29837e6072d5a2a7c6fe4290e97bba46bb8d478b5c598f7ab";
  };

  nativeBuildInputs = [ setuptools_scm ];
  propagatedBuildInputs = [
    keyring
    pkginfo
    pyblake2
    readme_renderer
    requests
    requests_toolbelt
    tqdm
    colorama
    rfc3986
  ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];

  # Requires network
  doCheck = false;

  meta = {
    description = "Collection of utilities for interacting with PyPI";
    homepage = "https://github.com/pypa/twine";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ fridh ];
  };
}