18 lines
336 B
Nix
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
|
|
];
|
|
}
|