1{ lib 2, buildPythonPackage 3, fetchPypi 4, cryptography 5, deprecated 6}: 7 8buildPythonPackage rec { 9 pname = "jwcrypto"; 10 version = "1.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "f88816eb0a41b8f006af978ced5f171f33782525006cdb055b536a40f4d46ac9"; 15 }; 16 17 propagatedBuildInputs = [ 18 cryptography 19 deprecated 20 ]; 21 22 meta = with lib; { 23 description = "Implementation of JOSE Web standards"; 24 homepage = "https://github.com/latchset/jwcrypto"; 25 license = licenses.lgpl3Plus; 26 maintainers = [ maintainers.costrouc ]; 27 }; 28}