mirror of
https://github.com/prusnak/suez.git
synced 2026-08-13 12:33:13 +02:00
15 lines
179 B
Nix
15 lines
179 B
Nix
with import <nixpkgs> {};
|
|
|
|
let
|
|
SuezPython = python3.withPackages(ps: [
|
|
ps.rich
|
|
]);
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "suez-env";
|
|
buildInputs = [
|
|
SuezPython
|
|
];
|
|
}
|