Skip to content

Commit

Permalink
python3Packages.gocardless-pro: remove nose dependency
Browse files Browse the repository at this point in the history
Addresses NixOS#326513
Dependency `nose` was removed in favor of pytest in version 1.46.2.
  • Loading branch information
lavafroth authored and shahinism committed Jul 15, 2024
1 parent 3663cc8 commit b65c049
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pkgs/development/python-modules/gocardless-pro/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand All @@ -21,6 +21,8 @@ buildPythonPackage rec {
hash = "sha256-Oi68s4x/rS8ahvJ9TsniYfDidCxtvcvsMwYhJirYlP0=";
};

build-system = [ setuptools ];

propagatedBuildInputs = [
requests
six
Expand All @@ -31,7 +33,6 @@ buildPythonPackage rec {
nativeCheckInputs = [
pytestCheckHook
responses
nose
];

meta = with lib; {
Expand Down

0 comments on commit b65c049

Please sign in to comment.