python-data template: add requests module

This commit is contained in:
colin 2022-12-26 09:29:23 +00:00
parent a0ac7fa98d
commit 9a002c99eb
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,42 @@
{
"nodes": {
"flake-utils": {
"locked": {
"lastModified": 1667395993,
"narHash": "sha256-nuEHfE/LcWyuSWnS8t12N1wc105Qtau+/OdUAjtQ0rA=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "5aed5285a952e0b949eb3ba02c12fa4fcfef535f",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1671997655,
"narHash": "sha256-8zUwvnJrBwiFIdw9VgARj1PIQsto5Spn9J5v34b0O7A=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "aac1f0b25e6b04afad8e05dec5828f5c02398bd1",
"type": "github"
},
"original": {
"id": "nixpkgs",
"ref": "nixpkgs-unstable",
"type": "indirect"
}
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

View File

@ -11,6 +11,7 @@
natsort
pandas
plotly
requests
scipy
];
python3 = pkgs.python3.withPackages python-packages;