python313Packages.pytest-archon: init at 0.0.6

This commit is contained in:
Robert Schütz
2025-04-03 23:10:20 +02:00
committed by Martin Weinelt
parent de77cad483
commit 90038f5282
2 changed files with 46 additions and 0 deletions
@@ -0,0 +1,44 @@
{
buildPythonPackage,
fetchFromGitHub,
lib,
pytest,
pytestCheckHook,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "pytest-archon";
version = "0.0.6";
pyproject = true;
src = fetchFromGitHub {
owner = "jwbargsten";
repo = "pytest-archon";
tag = "v${version}";
hash = "sha256-ZKs7ifqgazEywszPGxkcPCf2WD2tEpEsbh8kHN/PL7s=";
};
build-system = [
setuptools
setuptools-scm
];
buildInputs = [
pytest
];
pythonImportsCheck = [ "pytest_archon" ];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
description = "Tool that helps you structure (large) Python projects";
homepage = "https://github.com/jwbargsten/pytest-archon";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
+2
View File
@@ -13427,6 +13427,8 @@ self: super: with self; {
pytest-ansible = callPackage ../development/python-modules/pytest-ansible { };
pytest-archon = callPackage ../development/python-modules/pytest-archon { };
pytest-arraydiff = callPackage ../development/python-modules/pytest-arraydiff { };
pytest-astropy = callPackage ../development/python-modules/pytest-astropy { };