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-14 19:06:39 +05:30
parent 5f736f2ef1
commit c757e22c0c
@@ -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; {