Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 529 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, cryptography 5}: 6 7buildPythonPackage rec { 8 pname = "jwcrypto"; 9 version = "0.8"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "b7fee2635bbefdf145399392f5be26ad54161c8271c66b5fe107b4b452f06c24"; 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}