python310Packages.onetimepad: init at 1.4

This commit is contained in:
Robert Schütz 2022-06-30 17:26:48 +00:00
parent 8937eaacc0
commit 0ccd98cae5
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "onetimepad";
version = "1.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1eaade76d8036e1cb79e944b75874bfe5ee4046a571c0724564e1721565c73fd";
};
# upstream has no tests
doCheck = false;
pythonImportsCheck = [ "onetimepad" ];
meta = {
description = "A hacky implementation of one-time pad";
homepage = "https://jailuthra.in/onetimepad";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}

View file

@ -6466,6 +6466,8 @@ in {
netmap = callPackage ../development/python-modules/netmap { };
onetimepad = callPackage ../development/python-modules/onetimepad { };
openai = callPackage ../development/python-modules/openai { };
openapi-core = callPackage ../development/python-modules/openapi-core { };