5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
45 lines
848 B
Nix
45 lines
848 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; [ ];
|
|
};
|
|
}
|