mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
17ea94881f
This script is heavily based on the script used to update all python libraries at pkgs/development/interpreters/python/update-python-libraries/update-python-libraries.py The Octave Packages' website uses YAML as their basis, so we must reformat to use YAML instead of JSON.
13 lines
202 B
Nix
13 lines
202 B
Nix
{ nixpkgs ? import ../.. { }
|
|
}:
|
|
with nixpkgs;
|
|
let
|
|
pyEnv = python3.withPackages(ps: with ps; [ packaging requests toolz pyyaml ]);
|
|
in
|
|
mkShell {
|
|
packages = [
|
|
pyEnv
|
|
nix-prefetch-scripts
|
|
];
|
|
}
|