Skip to content

Commit

Permalink
vula: 0.1.16 → 0.2.2023112801
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzleutgeb committed Dec 22, 2023
1 parent 7e68f03 commit fb504b7
Showing 1 changed file with 23 additions and 18 deletions.
41 changes: 23 additions & 18 deletions pkgs/by-name/vula/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,38 +2,43 @@
lib,
python3,
fetchgit,
highctidh,
nixosTests,
}:
with builtins; let
python = python3;
in
python.pkgs.buildPythonApplication rec {
pname = "vula";
version = "0.1.16";
version = "0.2.2023112801";
format = "pyproject";

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

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

doCheck = true;

Expand Down

0 comments on commit fb504b7

Please sign in to comment.