mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-05-10 03:37:03 +00:00
pythonPackages.braintree: init at 3.50.0
This commit is contained in:
parent
6f9eb70c9c
commit
2a7bcb7b3d
2 changed files with 29 additions and 0 deletions
27
pkgs/development/python-modules/braintree/default.nix
Normal file
27
pkgs/development/python-modules/braintree/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -262,6 +262,8 @@ in {
|
||||||
|
|
||||||
boltons = callPackage ../development/python-modules/boltons { };
|
boltons = callPackage ../development/python-modules/boltons { };
|
||||||
|
|
||||||
|
braintree = callPackage ../development/python-modules/braintree { };
|
||||||
|
|
||||||
breathe = callPackage ../development/python-modules/breathe { };
|
breathe = callPackage ../development/python-modules/breathe { };
|
||||||
|
|
||||||
brotli = callPackage ../development/python-modules/brotli { };
|
brotli = callPackage ../development/python-modules/brotli { };
|
||||||
|
|
Loading…
Add table
Reference in a new issue