From 6282d21790f1ad6d584019042b5d643545f2db99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Thu, 26 Aug 2021 14:03:43 +0200 Subject: [PATCH] python39Packages.stripe: update meta, add imports check, remove unused checkInputs --- pkgs/development/python-modules/stripe/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/stripe/default.nix b/pkgs/development/python-modules/stripe/default.nix index 144be6c554ee..e02da9a07ca5 100644 --- a/pkgs/development/python-modules/stripe/default.nix +++ b/pkgs/development/python-modules/stripe/default.nix @@ -1,13 +1,9 @@ -{ lib, buildPythonPackage, fetchPypi, requests, pytest, pytest-cov, pytest-mock, pytest-xdist }: +{ lib, buildPythonPackage, fetchPypi, requests }: buildPythonPackage rec { pname = "stripe"; version = "2.60.0"; - # Tests require network connectivity and there's no easy way to disable - # them. ~ C. - doCheck = false; - src = fetchPypi { inherit pname version; sha256 = "8966b7793014380f60c6f121ba333d6f333a55818edaf79c8d70464ce0a7a808"; @@ -15,11 +11,15 @@ buildPythonPackage rec { propagatedBuildInputs = [ requests ]; - checkInputs = [ pytest pytest-cov pytest-mock pytest-xdist ]; + # 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"; license = licenses.mit; + maintainers = with maintainers; [ ]; }; }