pythonPackages.pyls-spyder: Init at 0.3.0
This commit is contained in:
parent
3428107fcf
commit
d132cb1424
24
pkgs/development/python-modules/pyls-spyder/default.nix
Normal file
24
pkgs/development/python-modules/pyls-spyder/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, python-language-server }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyls-spyder";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "07apxh12b8ybkx5izr7pg8kbg5g5wgzw7vh5iy2n8dhiqarzp7s1";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ python-language-server ];
|
||||
|
||||
# no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "pyls_spyder" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Spyder extensions for the python-language-server";
|
||||
homepage = "https://github.com/spyder-ide/pyls-spyder";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||
};
|
||||
}
|
@ -5446,6 +5446,8 @@ in {
|
||||
|
||||
pyls-mypy = callPackage ../development/python-modules/pyls-mypy { };
|
||||
|
||||
pyls-spyder = callPackage ../development/python-modules/pyls-spyder { };
|
||||
|
||||
PyLTI = callPackage ../development/python-modules/pylti { };
|
||||
|
||||
pymacaroons = callPackage ../development/python-modules/pymacaroons { };
|
||||
|
Loading…
Reference in New Issue
Block a user