Skip to content

Commit

Permalink
vula: init at 0.1.16
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzleutgeb committed Dec 22, 2023
1 parent 2b2917b commit a3cfade
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions pkgs/by-name/vula/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
lib,
python3,
fetchgit,
nixosTests,
}:
with builtins; let
python = python3;
in
python.pkgs.buildPythonApplication rec {
pname = "vula";
version = "0.1.16";
format = "pyproject";

src = fetchgit {
url = "https://codeberg.org/vula/vula";
rev = "v${version}";
hash = "sha256-AotWapYAONMRaIEdKV4O0fZmOd46vh5fosyvpaTLHvA=";
};

propagatedBuildInputs = with python.pkgs; [
setuptools
pyaudio
pyroute2
hkdf
pynacl
click
pyyaml
pystray
qrcode
pillow
pydbus
zeroconf
schema
cryptography
];

doCheck = true;

meta = with lib; {
description = "Automatic local network encryption";
homepage = "https://vula.link/";
license = licenses.gpl3;
maintainers = with maintainers; [lorenzleutgeb];
};
}

0 comments on commit a3cfade

Please sign in to comment.