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