nixpkgs/pkgs/development/python-modules/braintree/default.nix
2020-01-27 14:56:00 -08:00

28 lines
584 B
Nix

{ lib,
fetchPypi,
requests,
buildPythonPackage
}:
buildPythonPackage rec {
pname = "braintree";
version = "3.58.0";
src = fetchPypi {
inherit pname version;
sha256 = "0n8k9m3kifj34rzi2a3jgjsik91w8z32xaaxcmvqs7x8m5m3kjj4";
};
propagatedBuildInputs = [ requests ];
# pypi release does not include tests
doCheck = false;
meta = with lib; {
description = "Python library for integration with Braintree";
homepage = https://github.com/braintree/braintree_python;
license = licenses.mit;
maintainers = [ maintainers.ivegotasthma ];
};
}