2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
44 lines
916 B
Nix
44 lines
916 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, requests
|
|
, six
|
|
, pytestCheckHook
|
|
, responses
|
|
, nose
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "gocardless-pro";
|
|
version = "1.48.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gocardless";
|
|
repo = "gocardless-pro-python";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-9229lwCtVu4Pfru6e9JdbP3KUUYojBLuNQ+volP6OX0=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
six
|
|
];
|
|
|
|
pythonImportsCheck = [ "gocardless_pro" ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
responses
|
|
nose
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A client library for the GoCardless Pro API";
|
|
homepage = "https://github.com/gocardless/gocardless-pro-python";
|
|
changelog = "https://github.com/gocardless/gocardless-pro-python/blob/${src.rev}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ blaggacao ];
|
|
};
|
|
}
|
|
|