summary refs log tree commit diff
path: root/pkgs/development/python-modules/python_keyczar/default.nix
blob: da4f3ed529ecb0cfd4e7088f13a7be3d1f8a711e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv
, buildPythonPackage
, fetchPypi
, pyasn1
, pycrypto
}:

buildPythonPackage rec {
  pname = "python-keyczar";
  version = "0.716";

  src = fetchPypi {
    inherit pname version;
    sha256 = "f9b614112dc8248af3d03b989da4aeca70e747d32fe7e6fce9512945365e3f83";
  };

  buildInputs = [ pyasn1 pycrypto ];

  meta = with stdenv.lib; {
    description = "Toolkit for safe and simple cryptography";
    homepage    = https://pypi.python.org/pypi/python-keyczar;
    license     = licenses.asl20;
    maintainers = with maintainers; [ lovek323 ];
    platforms   = platforms.unix;
  };

}