blob: be010b2011cd9b5f487f20f8c9371ffa10208b79 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatch-vcs,
hatchling,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "apipkg";
version = "3.0.2";
pyproject = true;
src = fetchFromGitHub {
owner = "pytest-dev";
repo = "apipkg";
tag = "v${version}";
hash = "sha256-ANLD7fUMKN3RmAVjVkcpwUH6U9ASalXdwKtPpoC8Urs=";
};
build-system = [
hatch-vcs
hatchling
];
nativeCheckInputs = [ pytestCheckHook ];
enabledTestPaths = [ "test_apipkg.py" ];
pythonImportsCheck = [ "apipkg" ];
meta = {
changelog = "https://github.com/pytest-dev/apipkg/blob/main/CHANGELOG";
description = "Namespace control and lazy-import mechanism";
homepage = "https://github.com/pytest-dev/apipkg";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|