nixpkgs/pkgs/development/python-modules/macaroonbakery/default.nix
2024-04-16 10:54:44 +01:00

61 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
nix-update-script,
protobuf3,
pymacaroons,
pynacl,
pyrfc3339,
requests,
setuptools,
httmock,
fixtures,
pytestCheckHook,
mock,
}:
buildPythonPackage rec {
pname = "macaroonbakery";
version = "1.3.4";
pyproject = true;
src = fetchFromGitHub {
owner = "go-macaroon-bakery";
repo = "py-macaroon-bakery";
rev = "refs/tags/${version}";
hash = "sha256-NEhr8zkrHceeLbAyuUvc7U6dyQxkpkj0m5LlnBMafA0=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
protobuf3
pymacaroons
pynacl
pyrfc3339
requests
];
pythonImportsCheck = [ "macaroonbakery" ];
nativeCheckInputs = [
fixtures
httmock
mock
pytestCheckHook
];
passthru.updateScript = nix-update-script { };
meta = {
description = "A Python library for working with macaroons";
homepage = "https://github.com/go-macaroon-bakery/py-macaroon-bakery";
changelog = "https://github.com/go-macaroon-bakery/py-macaroon-bakery/releases/tag/${version}";
license = lib.licenses.lgpl3Only;
maintainers = with lib.maintainers; [ jnsgruk ];
platforms = lib.platforms.linux;
};
}