mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
buildPythonPackage,
|
|
distutils,
|
|
fetchFromGitHub,
|
|
python,
|
|
wheel,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "setuptools";
|
|
version = "75.1.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pypa";
|
|
repo = "setuptools";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-ZvhXfusayUHHFXl7ZBksFhxTi1p+Va6qAwq7Fo7Tg/s=";
|
|
};
|
|
|
|
patches = [
|
|
./tag-date.patch
|
|
];
|
|
|
|
nativeBuildInputs = [ wheel ];
|
|
|
|
preBuild = lib.optionalString (!stdenv.hostPlatform.isWindows) ''
|
|
export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
|
|
'';
|
|
|
|
# Requires pytest, causing infinite recursion.
|
|
doCheck = false;
|
|
|
|
passthru.tests = {
|
|
inherit distutils;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Utilities to facilitate the installation of Python packages";
|
|
homepage = "https://github.com/pypa/setuptools";
|
|
changelog = "https://setuptools.pypa.io/en/stable/history.html#v${
|
|
replaceStrings [ "." ] [ "-" ] version
|
|
}";
|
|
license = with licenses; [ mit ];
|
|
platforms = python.meta.platforms;
|
|
maintainers = teams.python.members;
|
|
};
|
|
}
|