Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / onetimepad / default.nix
blobcca4a06d6027d3f1e55758af01d7a189a6153631
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "onetimepad";
8   version = "1.4";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "1eaade76d8036e1cb79e944b75874bfe5ee4046a571c0724564e1721565c73fd";
15   };
17   # upstream has no tests
18   doCheck = false;
20   pythonImportsCheck = [ "onetimepad" ];
22   meta = {
23     description = "A hacky implementation of one-time pad";
24     homepage = "https://jailuthra.in/onetimepad";
25     license = lib.licenses.mit;
26     maintainers = with lib.maintainers; [ dotlambda ];
27   };