My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/twofish/default.nix

33 lines
617 B

{ 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
];
};
}