mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
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:
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; {
|
||||
|
Loading…
Reference in New Issue
Block a user