Merge pull request #160422 from r-ryantm/auto-update/python3.10-stripe

python310Packages.stripe: 2.65.0 -> 2.66.0

authored by Fabian Affolter and committed by GitHub b2de4627 3989901c

+17 -5
+17 -5
pkgs/development/python-modules/stripe/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, requests }: 2 3 buildPythonPackage rec { 4 pname = "stripe"; 5 - version = "2.65.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "2e55d4d7262085de9cef2228f14581925c35350ba58a332352b1ec9e19a7b7a6"; 10 }; 11 12 - propagatedBuildInputs = [ requests ]; 13 14 # Tests require network connectivity and there's no easy way to disable them 15 doCheck = false; 16 17 - pythonImportsCheck = [ "stripe" ]; 18 19 meta = with lib; { 20 description = "Stripe Python bindings";
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , requests 5 + , pythonOlder 6 + }: 7 8 buildPythonPackage rec { 9 pname = "stripe"; 10 + version = "2.66.0"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 + hash = "sha256-d8YDIjD3cUsaG0WQdPCMYNYMIpucO+rDcnGQY+PRQJw="; 18 }; 19 20 + propagatedBuildInputs = [ 21 + requests 22 + ]; 23 24 # Tests require network connectivity and there's no easy way to disable them 25 doCheck = false; 26 27 + pythonImportsCheck = [ 28 + "stripe" 29 + ]; 30 31 meta = with lib; { 32 description = "Stripe Python bindings";