Files
nixpkgs/pkgs/development/python-modules/twine/default.nix
T
2019-09-29 11:29:24 +02:00

33 lines
667 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pkginfo
, requests
, requests_toolbelt
, tqdm
, pyblake2
, readme_renderer
}:
buildPythonPackage rec {
pname = "twine";
version = "1.15.0";
src = fetchPypi {
inherit pname version;
sha256 = "11rpd653zcgzkq3sgwkzs3mpxl3r5rij59745ni84ikv8smjmlm3";
};
propagatedBuildInputs = [ pkginfo requests requests_toolbelt tqdm pyblake2 readme_renderer ];
# 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 ];
};
}