mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
python3Packages.pyls-memestra: init at 0.0.16
This commit is contained in:
parent
076a93efc6
commit
2eb41462b5
37
pkgs/development/python-modules/pyls-memestra/default.nix
Normal file
37
pkgs/development/python-modules/pyls-memestra/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, deprecated
|
||||
, memestra
|
||||
, python-lsp-server
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyls-memestra";
|
||||
version = "0.0.16";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-zMVDd2uB4znw38z3yb0Nt7qQH5dGHTbQBIZO/qo1/t8=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
deprecated
|
||||
memestra
|
||||
python-lsp-server
|
||||
];
|
||||
|
||||
# Tests fail because they rely on writting to read-only files
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pyls_memestra"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Memestra plugin for the Python Language Server";
|
||||
homepage = "https://github.com/QuantStack/pyls-memestra";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ GaetanLepage ];
|
||||
};
|
||||
}
|
@ -8710,6 +8710,8 @@ self: super: with self; {
|
||||
|
||||
pyls-isort = callPackage ../development/python-modules/pyls-isort { };
|
||||
|
||||
pyls-memestra = callPackage ../development/python-modules/pyls-memestra { };
|
||||
|
||||
pyls-spyder = callPackage ../development/python-modules/pyls-spyder { };
|
||||
|
||||
pylsp-mypy = callPackage ../development/python-modules/pylsp-mypy { };
|
||||
|
Loading…
Reference in New Issue
Block a user