pythonPackages.pyls-spyder: Init at 0.3.0
This commit is contained in:
parent
3428107fcf
commit
d132cb1424
|
@ -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-mypy = callPackage ../development/python-modules/pyls-mypy { };
|
||||||
|
|
||||||
|
pyls-spyder = callPackage ../development/python-modules/pyls-spyder { };
|
||||||
|
|
||||||
PyLTI = callPackage ../development/python-modules/pylti { };
|
PyLTI = callPackage ../development/python-modules/pylti { };
|
||||||
|
|
||||||
pymacaroons = callPackage ../development/python-modules/pymacaroons { };
|
pymacaroons = callPackage ../development/python-modules/pymacaroons { };
|
||||||
|
|
Loading…
Reference in New Issue