1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 14:11:36 +00:00

pythonPackages.braintree: init at 3.50.0

This commit is contained in:
ivegotasthma 2019-01-21 11:58:28 +01:00
parent 6f9eb70c9c
commit 2a7bcb7b3d
No known key found for this signature in database
GPG key ID: 09AC52AEA87817A4
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib,
fetchPypi,
requests,
buildPythonPackage
}:
buildPythonPackage rec {
pname = "braintree";
version = "3.50.0";
src = fetchPypi {
inherit pname version;
sha256 = "d1d7a6854b623f2c616451fa474113ac7fb8a2cbeb7dfad36dd3312113484030";
};
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 ];
};
}

View file

@ -262,6 +262,8 @@ in {
boltons = callPackage ../development/python-modules/boltons { };
braintree = callPackage ../development/python-modules/braintree { };
breathe = callPackage ../development/python-modules/breathe { };
brotli = callPackage ../development/python-modules/brotli { };