Martin Weinelt 8056f9250c
treewide: remove redundant SETUPTOOLS_SCM_PRETEND_VERSION usage
The setuptools-scm packages gained a setup hook, that sets it to the
derivation version automatically, so setting it to that manually has
become redundant.

This also affects downstream consumers of setuptools-scm, like hatch-vcs
or flit-scm.
2023-12-20 20:16:39 +01:00

50 lines
957 B
Nix

{ lib
, asttokens
, buildPythonPackage
, fetchFromGitHub
, littleutils
, pytestCheckHook
, pythonAtLeast
, pythonOlder
, rich
, setuptools-scm
}:
buildPythonPackage rec {
pname = "executing";
version = "1.2.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "alexmojaki";
repo = pname;
rev = "v${version}";
hash = "sha256-3M3uSJ5xQ5Ciy8Lz21u9zjju/7SBSFHobCqSiJ6AP8M=";
};
nativeBuildInputs = [
setuptools-scm
];
nativeCheckInputs = [
asttokens
littleutils
pytestCheckHook
] ++ lib.optionals (pythonAtLeast "3.11") [
rich
];
pythonImportsCheck = [
"executing"
];
meta = with lib; {
description = "Get information about what a frame is currently doing, particularly the AST node being executed";
homepage = "https://github.com/alexmojaki/executing";
license = licenses.mit;
maintainers = with maintainers; [ renatoGarcia ];
};
}