depot/third_party/nixpkgs/pkgs/development/python-modules/apipkg/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

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; [ ];
};
}