1{ lib 2, buildPythonPackage 3, fetchPypi 4, pyasn1 5, pycrypto 6}: 7 8buildPythonPackage rec { 9 pname = "python-keyczar"; 10 version = "0.716"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "f9b614112dc8248af3d03b989da4aeca70e747d32fe7e6fce9512945365e3f83"; 15 }; 16 17 buildInputs = [ pyasn1 pycrypto ]; 18 19 meta = with lib; { 20 description = "Toolkit for safe and simple cryptography"; 21 homepage = "https://pypi.python.org/pypi/python-keyczar"; 22 license = licenses.asl20; 23 maintainers = with maintainers; [ lovek323 ]; 24 platforms = platforms.unix; 25 }; 26 27}