Format all Nix files using the officially approved formatter,
making the CI check introduced in the previous commit succeed:
nix-build ci -A fmt.check
This is the next step of the of the [implementation](https://github.com/NixOS/nixfmt/issues/153)
of the accepted [RFC 166](https://github.com/NixOS/rfcs/pull/166).
This commit will lead to merge conflicts for a number of PRs,
up to an estimated ~1100 (~33%) among the PRs with activity in the past 2
months, but that should be lower than what it would be without the previous
[partial treewide format](https://github.com/NixOS/nixpkgs/pull/322537).
Merge conflicts caused by this commit can now automatically be resolved while rebasing using the
[auto-rebase script](8616af08d9/maintainers/scripts/auto-rebase).
If you run into any problems regarding any of this, please reach out to the
[formatting team](https://nixos.org/community/teams/formatting/) by
pinging @NixOS/nix-formatting.
71 lines
1.4 KiB
Nix
71 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
callPackage,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
|
|
# build-system
|
|
setuptools,
|
|
|
|
# dependencies
|
|
packaging,
|
|
typing-extensions,
|
|
tomli,
|
|
|
|
# optional-dependencies
|
|
rich,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "setuptools-scm";
|
|
version = "8.2.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "setuptools_scm";
|
|
inherit version;
|
|
hash = "sha256-oYOWobwCGcl00adGErEfnc4NW9ix3FXGX2rH/WCejCg=";
|
|
};
|
|
|
|
postPatch =
|
|
if (pythonOlder "3.11") then
|
|
''
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail 'tomli<=2.0.2' 'tomli'
|
|
''
|
|
else
|
|
null;
|
|
|
|
build-system = [ setuptools ] ++ lib.optionals (pythonOlder "3.11") [ tomli ];
|
|
|
|
dependencies = [
|
|
packaging
|
|
setuptools
|
|
typing-extensions
|
|
] ++ lib.optionals (pythonOlder "3.11") [ tomli ];
|
|
|
|
optional-dependencies = {
|
|
rich = [ rich ];
|
|
};
|
|
|
|
pythonImportsCheck = [ "setuptools_scm" ];
|
|
|
|
# check in passthru.tests.pytest to escape infinite recursion on pytest
|
|
doCheck = false;
|
|
|
|
passthru.tests = {
|
|
pytest = callPackage ./tests.nix { };
|
|
};
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/pypa/setuptools_scm/blob/${version}/CHANGELOG.md";
|
|
homepage = "https://github.com/pypa/setuptools_scm/";
|
|
description = "Handles managing your python package versions in scm metadata";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ nickcao ];
|
|
};
|
|
}
|