fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
40 lines
838 B
Nix
40 lines
838 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
hatch-vcs,
|
|
hatchling,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "apipkg";
|
|
version = "3.0.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pytest-dev";
|
|
repo = "apipkg";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-ANLD7fUMKN3RmAVjVkcpwUH6U9ASalXdwKtPpoC8Urs=";
|
|
};
|
|
|
|
build-system = [
|
|
hatch-vcs
|
|
hatchling
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pytestFlagsArray = [ "test_apipkg.py" ];
|
|
|
|
pythonImportsCheck = [ "apipkg" ];
|
|
|
|
meta = with lib; {
|
|
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 = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|