Skip to content

Instantly share code, notes, and snippets.

openpgp4fpr:09B0879FFEF55E7B046E58C7AEF4A543011E8AC1

Keybase proof

I hereby claim:

  • I am crisbour on github.
  • I am crishydrax (https://keybase.io/crishydrax) on keybase.
  • I have a public key ASAgEFKFZLzV3HIJVdrbLboya9M4pppFEFuX5UAPO5rj-go

To claim this, I am signing this object:

@crisbour
crisbour / shell.nix
Created December 6, 2023 14:31
nix-shell for dev with spade-lang and surfer
{ pkgs ? import <nixpkgs> {},
#lib ? pkgs.stdenv.lib
}:
let
pythonEnv = pkgs.python38.withPackages (ps: with ps;
[
pytest
pycodestyle
pydocstyle
autopep8
@crisbour
crisbour / shell.nix
Created July 25, 2023 13:06 — forked from cdepillabout/shell.nix
shell.nix for Python development using virtualenv and pip
let
nixpkgs-src = builtins.fetchTarball {
# master of 2021-01-05.
url = "https://github.com/NixOS/nixpkgs/archive/1a57d96edd156958b12782e8c8b6a374142a7248.tar.gz";
sha256 = "1qdh457apmw2yxbpi1biwl5x5ygaw158ppff4al8rx7gncgl10rd";
};
pkgs = import nixpkgs-src {
config = {
# allowUnfree may be necessary for some packages, but in general you should not need it.