depot/third_party/nixpkgs/pkgs/development/python-modules/braintree/default.nix
Default email 841d9c7fc1 Project import generated by Copybara.
GitOrigin-RevId: 3a8d7958a610cd3fec3a6f424480f91a1b259185
2021-06-29 00:13:55 +01:00

27 lines
591 B
Nix

{ lib,
fetchPypi,
requests,
buildPythonPackage
}:
buildPythonPackage rec {
pname = "braintree";
version = "4.10.0";
src = fetchPypi {
inherit pname version;
sha256 = "f934a329c7a2b3f7058d5c733cc95da694f66afb5a789162ec701ba4d26a0d90";
};
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 = with maintainers; [ ];
};
}