hsldap2vcard/shell.nix

17 lines
253 B
Nix
Raw Normal View History

2020-05-10 10:05:18 +00:00
{ pkgs ? import <nixpkgs> {} }:
let
device = import ./ext/pydevice { pkgs = pkgs; };
python3 = pkgs.python3Full.withPackages (pp: with pp; [
ldap
pyyaml
ipython
bpython
]);
in pkgs.mkShell {
buildInputs = [
python3
];
}