nixpkgs/pkgs/development/python-modules/twine/default.nix

48 lines
957 B
Nix
Raw Normal View History

2019-12-22 19:50:24 +00:00
{ lib, buildPythonPackage, fetchPypi, pythonOlder
, importlib-metadata
, keyring
2017-09-26 18:32:15 +01:00
, pkginfo
2019-12-22 19:50:24 +00:00
, pyblake2
, readme_renderer
2017-09-26 18:32:15 +01:00
, requests
, requests_toolbelt
2019-12-22 19:50:24 +00:00
, setuptools_scm
2017-09-26 18:32:15 +01:00
, tqdm
2020-06-24 18:07:04 +01:00
, colorama
, rfc3986
2017-09-26 18:32:15 +01:00
}:
buildPythonPackage rec {
pname = "twine";
2020-06-24 18:07:04 +01:00
version = "3.2.0";
disabled = pythonOlder "3.6";
2017-09-26 18:32:15 +01:00
src = fetchPypi {
inherit pname version;
2020-06-24 18:07:04 +01:00
sha256 = "34352fd52ec3b9d29837e6072d5a2a7c6fe4290e97bba46bb8d478b5c598f7ab";
2017-09-26 18:32:15 +01:00
};
2019-12-22 19:50:24 +00:00
nativeBuildInputs = [ setuptools_scm ];
propagatedBuildInputs = [
keyring
pkginfo
pyblake2
readme_renderer
requests
requests_toolbelt
tqdm
2020-06-24 18:07:04 +01:00
colorama
rfc3986
2019-12-22 19:50:24 +00:00
] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
2017-09-26 18:32:15 +01:00
# Requires network
doCheck = false;
meta = {
description = "Collection of utilities for interacting with PyPI";
homepage = "https://github.com/pypa/twine";
2017-09-26 18:32:15 +01:00
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fridh ];
2017-09-26 18:32:15 +01:00
};
}