pythonPackages.python-keyczar: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-26 11:05:15 -04:00
committed by Frederik Rietdijk
parent eb90391331
commit bc9a1cda53
2 changed files with 28 additions and 18 deletions

View File

@@ -0,0 +1,27 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, pyasn1
, pycrypto
}:
buildPythonPackage rec {
pname = "python-keyczar";
version = "0.71c";
src = fetchPypi {
inherit pname version;
sha256 = "18mhiwqq6vp65ykmi8x3i5l3gvrvrrr8z2kv11z1rpixmyr7sw1p";
};
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;
};
}