mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 20:54:56 +00:00
Upstream no longer updating the sources in the lockfile.json, but they still update in their main branch's parsers.lua. We don't need to parse that file since nurr is already doing that for us. We can just grab latest parser info from their json.
21 lines
223 B
Nix
21 lines
223 B
Nix
{
|
|
pkgs ? import ../../../../../../.. { },
|
|
}:
|
|
|
|
with pkgs;
|
|
|
|
let
|
|
pythonWithPackages = python3.withPackages (
|
|
ps: with ps; [
|
|
requests
|
|
]
|
|
);
|
|
in
|
|
|
|
mkShell {
|
|
packages = [
|
|
nurl
|
|
pythonWithPackages
|
|
];
|
|
}
|