Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 32 lines 667 B view raw
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.15.0"; 15 16 src = fetchPypi { 17 inherit pname version; 18 sha256 = "11rpd653zcgzkq3sgwkzs3mpxl3r5rij59745ni84ikv8smjmlm3"; 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}