Fernando Rodrigues 05580f4b44
treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2025-04-25 22:20:17 -03:00

32 lines
715 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitLab,
pytestCheckHook,
}:
buildPythonPackage {
pname = "trampoline";
version = "0.1.2";
format = "setuptools";
# only wheel on pypi, no tags on git
src = fetchFromGitLab {
owner = "ferreum";
repo = "trampoline";
rev = "1d98f39c3015594e2ac8ed48dccc2f393b4dd82b";
hash = "sha256-A/tuR+QW9sKh76Qjwn1uQxlVJgWrSFzXeBRDdnSi2o4=";
};
pythonImportsCheck = [ "trampoline" ];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Simple and tiny yield-based trampoline implementation for python";
homepage = "https://gitlab.com/ferreum/trampoline";
license = licenses.mit;
teams = [ teams.tts ];
};
}