packages: add vja

This commit is contained in:
Kate 2025-04-16 15:52:52 +02:00
parent 59d3c1b77f
commit 33d829736d
3 changed files with 29 additions and 0 deletions

View file

@ -119,6 +119,7 @@ with pkgs;
unzip
unar
unrar
deprekages.vja
wget
zstd
zip

View file

@ -69,6 +69,7 @@ flake-utils.lib.eachDefaultSystem (
okc-agents = callPackage ./okc-agents.nix { };
_7zz = pkgs._7zz.override { useUasm = true; };
mergiraf = callPackage ./mergiraf.nix { };
vja = callPackage ./vja.nix { };
# libraries
libnfc-nci = callPackage ./libnfc-nci { };

27
packages/vja.nix Normal file
View file

@ -0,0 +1,27 @@
#
# oxfs faster sshfs (asynchronous ops)
#
# vim: et:ts=2:sw=2:
#
{
fetchPypi,
lib,
python3Packages,
}:
python3Packages.buildPythonApplication rec {
pname = "vja";
version = "4.7.1";
src = fetchPypi {
inherit pname version;
hash = "sha256-cVMJ5huUjtyUB+ywXgki9baoSAo860St11ZpKm5RmFU=";
};
dependencies = with python3Packages; [
click
click-aliases
requests
parsedatetime
python-dateutil
];
}