openpgp4fpr:09B0879FFEF55E7B046E58C7AEF4A543011E8AC1
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:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { pkgs ? import <nixpkgs> {}, | |
| #lib ? pkgs.stdenv.lib | |
| }: | |
| let | |
| pythonEnv = pkgs.python38.withPackages (ps: with ps; | |
| [ | |
| pytest | |
| pycodestyle | |
| pydocstyle | |
| autopep8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |