python310Packages.duecredit: drop dependency on six, raise minimum python version to 3.8
This commit is contained in:
parent
3e3853100a
commit
03982f1ffd
@ -7,7 +7,6 @@
|
||||
, vcrpy
|
||||
, citeproc-py
|
||||
, requests
|
||||
, six
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -15,7 +14,7 @@ buildPythonPackage rec {
|
||||
version = "0.9.3";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
@ -23,7 +22,7 @@ buildPythonPackage rec {
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ setuptools ];
|
||||
propagatedBuildInputs = [ citeproc-py requests six ];
|
||||
propagatedBuildInputs = [ citeproc-py requests ];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook vcrpy ];
|
||||
disabledTests = [ "test_import_doi" ]; # tries to access network
|
||||
|
Loading…
Reference in New Issue
Block a user