python310Packages.calver: move tests to passthru.tests

to avoid infinite recursion with hatchling update
This commit is contained in:
Sandro Jäckel 2023-07-18 22:57:06 +02:00 committed by Martin Weinelt
parent a5e4dd0aa8
commit 052f5aea58

View file

@ -6,37 +6,43 @@
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "calver";
version = "2022.06.26";
let
self = buildPythonPackage rec {
pname = "calver";
version = "2022.06.26";
format = "setuptools";
disabled = pythonOlder "3.5";
disabled = pythonOlder "3.5";
format = "setuptools";
src = fetchFromGitHub {
owner = "di";
repo = "calver";
rev = version;
hash = "sha256-YaXTkeUazwzghCX96Wfx39hGvukWKtHMLLeyF9OeiZI=";
};
src = fetchFromGitHub {
owner = "di";
repo = "calver";
rev = version;
hash = "sha256-YaXTkeUazwzghCX96Wfx39hGvukWKtHMLLeyF9OeiZI=";
postPatch = ''
substituteInPlace setup.py \
--replace "version=calver_version(True)" 'version="${version}"'
'';
doCheck = false; # avoid infinite recursion with hatchling
nativeCheckInputs = [
pretend
pytestCheckHook
];
pythonImportsCheck = [ "calver" ];
passthru.tests.calver = self.overridePythonAttrs { doCheck = true; };
meta = {
description = "Setuptools extension for CalVer package versions";
homepage = "https://github.com/di/calver";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
};
postPatch = ''
substituteInPlace setup.py \
--replace "version=calver_version(True)" 'version="${version}"'
'';
nativeCheckInputs = [
pretend
pytestCheckHook
];
pythonImportsCheck = [ "calver" ];
meta = {
description = "Setuptools extension for CalVer package versions";
homepage = "https://github.com/di/calver";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
in
self