python3Packages.gocardless-pro: remove nose dependency

Addresses #326513
Dependency `nose` was removed in favor of pytest in version 1.46.2.
This commit is contained in:
Himadri Bhattacharjee 2024-07-13 14:09:05 +05:30
parent 5f736f2ef1
commit c757e22c0c
No known key found for this signature in database

View File

@ -4,15 +4,15 @@
fetchFromGitHub,
requests,
six,
setuptools,
pytestCheckHook,
responses,
nose,
}:
buildPythonPackage rec {
pname = "gocardless-pro";
version = "1.52.0";
format = "setuptools";
pyproject = true;
src = fetchFromGitHub {
owner = "gocardless";
@ -21,6 +21,8 @@ buildPythonPackage rec {
hash = "sha256-Oi68s4x/rS8ahvJ9TsniYfDidCxtvcvsMwYhJirYlP0=";
};
build-system = [ setuptools ];
propagatedBuildInputs = [
requests
six
@ -31,7 +33,6 @@ buildPythonPackage rec {
nativeCheckInputs = [
pytestCheckHook
responses
nose
];
meta = with lib; {