python3Packages.josepy: fix test run and drop unused dependency
This commit is contained in:
parent
45e6b6019e
commit
b7ce919853
1 changed files with 6 additions and 6 deletions
|
@ -1,9 +1,9 @@
|
||||||
{ lib, fetchPypi, buildPythonPackage
|
{ lib
|
||||||
# buildInputs
|
, fetchPypi
|
||||||
, six
|
, buildPythonPackage
|
||||||
, setuptools
|
|
||||||
, pyopenssl
|
|
||||||
, cryptography
|
, cryptography
|
||||||
|
, pyopenssl
|
||||||
|
, setuptools
|
||||||
, mock
|
, mock
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
}:
|
}:
|
||||||
|
@ -20,12 +20,12 @@ buildPythonPackage rec {
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
# remove coverage flags
|
# remove coverage flags
|
||||||
sed -i '/addopts/d' pytest.ini
|
sed -i '/addopts/d' pytest.ini
|
||||||
|
sed -i '/flake8-ignore/d' pytest.ini
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
pyopenssl
|
pyopenssl
|
||||||
cryptography
|
cryptography
|
||||||
six
|
|
||||||
setuptools
|
setuptools
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue