netcup-dns/shell.nix

14 lines
286 B
Nix

# https://nixos.wiki/wiki/Python#Development_shell
{ pkgs ? import <nixpkgs> {} }:
let
my-python-packages = ps: with ps; [
requests
nc-dnsapi
# Build dependencies only.
build
twine
];
my-python = pkgs.python3.withPackages my-python-packages;
in my-python.env