initial commit

This commit is contained in:
Jonas Rabenstein 2025-09-30 12:07:41 +02:00
commit e3b0136650
9 changed files with 245 additions and 0 deletions

18
package/pyjls/default.nix Normal file
View file

@ -0,0 +1,18 @@
let
v."0.15.0" = "sha256-lr23f8YDF/7f/dAJIiZdy69lzcnO0HRkbYS/GkOYwfo=";
in {
callPackage,
jetperch,
name ? "pyjls",
version ? "0.15.0",
hash ? v.${version} or "",
}: callPackage ../python.nix {
inherit name;
inherit jetperch;
inherit version;
inherit hash;
repo = "jls";
pydeps = py: with py; [
numpy
];
}