Files
python-markdownify/shell.nix
2022-09-02 08:50:45 +02:00

11 lines
210 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "python-shell";
buildInputs = with pkgs; [
python38
python38Packages.tox
python38Packages.setuptools
python38Packages.virtualenv
];
}