11 lines
203 B
Nix
11 lines
203 B
Nix
with (import <nixpkgs> {});
|
|
mkShell {
|
|
buildInputs = [
|
|
|
|
# Defines a python + set of packages.
|
|
python3
|
|
python3Packages.autopep8
|
|
python3Packages.pyflakes
|
|
python3Packages.pylint
|
|
];
|
|
}
|