Files
nixpkgs/pkgs/development/python-modules/mercadopago/default.nix
2026-04-20 05:43:00 +00:00

42 lines
906 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "mercadopago";
version = "2.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "mercadopago";
repo = "sdk-python";
tag = version;
hash = "sha256-AYgYGY55hhvVY1lB6anJvjRquDRiNoDnpOFTuVdQniM=";
};
build-system = [
setuptools
];
dependencies = [
requests
];
# require internet
doCheck = false;
pythonImportsCheck = [ "mercadopago" ];
meta = {
description = "This library provides developers with a simple set of bindings to help you integrate Mercado Pago API to a website and start receiving payments";
homepage = "https://www.mercadopago.com";
changelog = "https://github.com/mercadopago/sdk-python/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ derdennisop ];
};
}