15 lines
259 B
Nix
15 lines
259 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
let pythonDeps = with pkgs.buildPackages.python3Packages; [
|
|
beautifulsoup4 lxml
|
|
requests
|
|
yapf
|
|
pytest
|
|
];
|
|
in pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs.buildPackages; [
|
|
python3
|
|
libnotify
|
|
] ++ pythonDeps;
|
|
}
|