python3Packages.pybuildkite: init at 1.3.0 (#524010)

This commit is contained in:
kirillrdy
2026-05-25 20:16:53 +00:00
committed by GitHub
2 changed files with 54 additions and 0 deletions
@@ -0,0 +1,52 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
requests,
# tests
pytest-cov-stub,
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "pybuildkite";
version = "1.3.0";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "pyasi";
repo = "pybuildkite";
tag = "v${finalAttrs.version}";
hash = "sha256-yMUZUkERfxMUkVVYNkPiFf9wrZR6d5+gqW/P6ri2Q1I=";
};
build-system = [
setuptools
];
dependencies = [
requests
];
pythonImportsCheck = [ "pybuildkite" ];
nativeCheckInputs = [
pytest-cov-stub
pytestCheckHook
];
meta = {
description = "Python library for the Buildkite API";
homepage = "https://github.com/pyasi/pybuildkite";
changelog = "https://github.com/pyasi/pybuildkite/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
})
+2
View File
@@ -13607,6 +13607,8 @@ self: super: with self; {
pybtex-docutils = callPackage ../development/python-modules/pybtex-docutils { };
pybuildkite = callPackage ../development/python-modules/pybuildkite { };
pybullet = callPackage ../development/python-modules/pybullet { };
pycairo = callPackage ../development/python-modules/pycairo { inherit (pkgs.buildPackages) meson; };