pythonPackages.twofish: init at 0.3.0

This commit is contained in:
Kevin Amado 2019-12-28 03:57:38 -05:00
parent 78d619c65e
commit ea7fa57694
No known key found for this signature in database
GPG Key ID: 04D0CEAF916A9A40
2 changed files with 35 additions and 0 deletions

@ -0,0 +1,33 @@
{ buildPythonPackage
, fetchPypi
, lib
# pythonPackages
, javaobj-py3
}:
buildPythonPackage rec {
pname = "twofish";
version = "0.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "1yihp2n42amrxw0wk9f66llpb3w5kwhgkcdg9krkzcik1nsqp7dh";
};
propagatedBuildInputs = [
javaobj-py3
];
# No tests implemented
doCheck = false;
meta = {
description = "Bindings for the Twofish implementation by Niels Ferguson";
homepage = "https://github.com/keybase/python-twofish";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [
kamadorueda
];
};
}

@ -6458,6 +6458,8 @@ in {
twilio = callPackage ../development/python-modules/twilio { };
twofish = callPackage ../development/python-modules/twofish { };
uranium = callPackage ../development/python-modules/uranium { };
uuid = callPackage ../development/python-modules/uuid { };