blob: affa6182b7d7017c3ddc239331e1d24eb59a410a (
plain)
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
28
29
30
|
{
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 = "Hacky implementation of one-time pad";
mainProgram = "onetimepad";
homepage = "https://jailuthra.in/onetimepad";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|