mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-14 22:04:27 +01: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.
12 lines
202 B
Nix
12 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
|
|
];
|
|
}
|