Skip to content

Commit

Permalink
pythonPackages.braintree: init at 3.50.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ivegotasthma committed Jan 21, 2019
1 parent 6f9eb70 commit 2a7bcb7
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pkgs/development/python-modules/braintree/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 2a7bcb7

Please sign in to comment.