blob: 643d1ae988c7835aa7c508098726e48ab135fb2a (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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 ];
};
}
|