depot/third_party/nixpkgs/pkgs/development/python-modules/stripe/default.nix
Default email 472aeafc57 Project import generated by Copybara.
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
2024-10-04 18:56:33 +02:00

42 lines
851 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
requests,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
pname = "stripe";
version = "11.1.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-H6xmDcwwFCaMr8lKRevqxm8adSNl9gAZ0iY+DB4Plls=";
};
build-system = [ setuptools ];
dependencies = [
requests
typing-extensions
];
# Tests require network connectivity and there's no easy way to disable them
doCheck = false;
pythonImportsCheck = [ "stripe" ];
meta = with lib; {
description = "Stripe Python bindings";
homepage = "https://github.com/stripe/stripe-python";
changelog = "https://github.com/stripe/stripe-python/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = [ ];
};
}