nixpkgs/pkgs/development/python-modules/twine/default.nix
Frederik Rietdijk 5772ac5a75 Removing FRidh as active maintainer of packages
In the past I was very active with Python packaging.
For several years now I was hardly around as maintainer,
so it does not make sense I am listed as a maintainer for
these makes. Looking back, I should have removed myself
as maintainer already much longer ago. Anyway, better late
than never.

It's been a fun ride, and  I do intend to occasionally contribute
to Nixpkgs, but not in the same way it once was.
2024-04-28 12:20:07 +02:00

53 lines
920 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, importlib-metadata
, keyring
, pkginfo
, readme-renderer
, requests
, requests-toolbelt
, rich
, rfc3986
, setuptools-scm
, urllib3
}:
buildPythonPackage rec {
pname = "twine";
version = "5.0.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-ibDMfTcKS2ZCHMYQLyaaqRD+DxhhwST1c88t3tvBDPQ=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [
importlib-metadata
keyring
pkginfo
readme-renderer
requests
requests-toolbelt
rfc3986
rich
urllib3
];
# Requires network
doCheck = false;
pythonImportsCheck = [ "twine" ];
meta = {
description = "Collection of utilities for interacting with PyPI";
mainProgram = "twine";
homepage = "https://github.com/pypa/twine";
license = lib.licenses.asl20;
};
}