jetperch/package/pyjls/default.nix
Jonas Rabenstein e3b0136650 initial commit
2025-09-30 12:07:41 +02:00

18 lines
336 B
Nix

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
];
}