python313Packages.pytest-archon: init at 0.0.6
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user