40b9f4ef87
Rewrite the derivation using buildPythonApplication, which makes the wrappers a lot cleaner. Adds tests because the application wasn't working as intended due to the wrong file-magic python package (used "filemagic" instead of desired "file-magic").
16 lines
380 B
Nix
16 lines
380 B
Nix
{ pkgs, ... }:
|
|
|
|
with pkgs;
|
|
|
|
{
|
|
pass-audit = callPackage ./audit {
|
|
pythonPackages = python3Packages;
|
|
};
|
|
pass-checkup = callPackage ./checkup.nix {};
|
|
pass-import = callPackage ./import.nix {};
|
|
pass-otp = callPackage ./otp.nix {};
|
|
pass-tomb = callPackage ./tomb.nix {};
|
|
pass-update = callPackage ./update.nix {};
|
|
pass-genphrase = callPackage ./genphrase.nix {};
|
|
}
|