Last active
July 2, 2023 20:12
-
-
Save carlthome/c12d0e5e6998e1aae8649dca830bbf33 to your computer and use it in GitHub Desktop.
mir_eval from nixpkgs example shell
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> { } }: | |
pkgs.mkShell { | |
packages = [ | |
(pkgs.python3.withPackages (ps: with ps; [ | |
ipython | |
mir_eval | |
])) | |
]; | |
shellHook = '' | |
ipython -c 'import mir_eval; print(mir_eval.__version__)' | |
''; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment