python.pkgs.twine: 1.8.1 -> 1.9.1
This commit is contained in:
32
pkgs/development/python-modules/twine/default.nix
Normal file
32
pkgs/development/python-modules/twine/default.nix
Normal file
@@ -0,0 +1,32 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pkginfo
|
||||
, requests
|
||||
, requests_toolbelt
|
||||
, tqdm
|
||||
, pyblake2
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "twine";
|
||||
version = "1.9.1";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "caa45b7987fc96321258cd7668e3be2ff34064f5c66d2d975b641adca659c1ab";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pkginfo requests requests_toolbelt tqdm pyblake2 ];
|
||||
|
||||
# Requires network
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Collection of utilities for interacting with PyPI";
|
||||
homepage = https://github.com/pypa/twine;
|
||||
license = lib.licenses.asl20;
|
||||
maintainer = with lib.maintainers; [ fridh ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user