Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 529 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, cryptography 5}: 6 7buildPythonPackage rec { 8 pname = "jwcrypto"; 9 version = "0.6.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "a87ac0922d09d9a65011f76d99849f1fbad3d95439c7452cebf4ab0871c2b665"; 14 }; 15 16 propagatedBuildInputs = [ 17 cryptography 18 ]; 19 20 meta = with lib; { 21 description = "Implementation of JOSE Web standards"; 22 homepage = https://github.com/latchset/jwcrypto; 23 license = licenses.lgpl3Plus; 24 maintainers = [ maintainers.costrouc ]; 25 }; 26}