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:
parent
6f9eb70c9c
commit
2a7bcb7b3d
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 { };
|
||||
|
||||
braintree = callPackage ../development/python-modules/braintree { };
|
||||
|
||||
breathe = callPackage ../development/python-modules/breathe { };
|
||||
|
||||
brotli = callPackage ../development/python-modules/brotli { };
|
||||
|
|
Loading…
Reference in a new issue