This takes the first baby steps towards resolving #765. This first test/workflow isn't the most useful thing ever, because it doesn't test the code path for building the manual. Still, it does a decent job at testing the basic git workflow, and the upload functionality. Change-Id: I16dd3a39addd6308ad3eb37c2e3dc3466584a4e3
13 lines
218 B
Nix
13 lines
218 B
Nix
{
|
|
lib,
|
|
writePython3Bin,
|
|
python3Packages,
|
|
}:
|
|
|
|
let
|
|
package = writePython3Bin "garage-ephemeral-key" { libraries = [ python3Packages.requests ]; } (
|
|
builtins.readFile ./garage-ephemeral-key.py
|
|
);
|
|
in
|
|
package
|