pkgs/vpython-jupyter: init with dependencies

This commit is contained in:
Infinidoge 2025-01-19 13:56:07 -05:00
parent e2f89e5e16
commit 903800fb0b
Signed by: Infinidoge
SSH key fingerprint: SHA256:EMoPe5e2dO0gEvtBb2xkZTz5dkyL0rBmuiGTKG5s96E
8 changed files with 9298 additions and 2 deletions

18
pkgs/simpervisor.nix Normal file
View file

@ -0,0 +1,18 @@
{ buildPythonPackage, fetchFromGitHub, hatchling }:
buildPythonPackage {
pname = "simpervisor";
version = "0-unstable-2024-03-07";
pyproject = true;
src = fetchFromGitHub {
owner = "jupyterhub";
repo = "simpervisor";
rev = "f29189ec6eb961caa5b26782cac1645db074ddce";
hash = "sha256-rmEQ68Ll1cIzQrYXHTkLYVxog3kPkieExJ1xBTeQ2nc=";
};
build-system = [
hatchling
];
}