lol

Merge pull request #112748 from r-ryantm/auto-update/python3.7-josepy

python37Packages.josepy: 1.5.0 -> 1.6.0

authored by

Martin Weinelt and committed by
GitHub
9704f746 34e0672c

+13 -4
+13 -4
pkgs/development/python-modules/josepy/default.nix
··· 4 4 , setuptools 5 5 , pyopenssl 6 6 , cryptography 7 + , mock 8 + , pytestCheckHook 7 9 }: 8 10 9 11 buildPythonPackage rec { 10 12 pname = "josepy"; 11 - version = "1.5.0"; 13 + version = "1.6.0"; 12 14 13 15 src = fetchPypi { 14 16 inherit pname version; 15 - sha256 = "502a36f86efe2a6d09bf7018bca9fd8f8f24d8090a966aa037dbc844459ff9c8"; 17 + sha256 = "0aab1c3ceffe045e7fd5bcfe7685e27e9d2758518d9ba7116b5de34087e70bf5"; 16 18 }; 17 19 20 + postPatch = '' 21 + # remove coverage flags 22 + sed -i '/addopts/d' pytest.ini 23 + ''; 24 + 18 25 propagatedBuildInputs = [ 19 26 pyopenssl 20 27 cryptography ··· 22 29 setuptools 23 30 ]; 24 31 25 - # too many unpackaged check requirements 26 - doCheck = false; 32 + checkInputs = [ 33 + mock 34 + pytestCheckHook 35 + ]; 27 36 28 37 meta = with lib; { 29 38 description = "JOSE protocol implementation in Python";