python.pkgs.pyls-isort: init at 0.1.2
This commit is contained in:
parent
d4153a6fb8
commit
5432e4d0ad
29
pkgs/development/python-modules/pyls-isort/default.nix
Normal file
29
pkgs/development/python-modules/pyls-isort/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchFromGitHub
|
||||||
|
, python-language-server, isort
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pyls-isort";
|
||||||
|
version = "0.1.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "paradoxxxzero";
|
||||||
|
repo = "pyls-isort";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0mf8c6dw5lsj9np20p0vrhr1yfycq2awjk2pil28l579xj9nr0dc";
|
||||||
|
};
|
||||||
|
|
||||||
|
# no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
isort python-language-server
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = https://github.com/palantir/python-language-server;
|
||||||
|
description = "An implementation of the Language Server Protocol for Python";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.mic92 ];
|
||||||
|
};
|
||||||
|
}
|
@ -11272,6 +11272,8 @@ in {
|
|||||||
|
|
||||||
pyls-mypy = callPackage ../development/python-modules/pyls-mypy {};
|
pyls-mypy = callPackage ../development/python-modules/pyls-mypy {};
|
||||||
|
|
||||||
|
pyls-isort = callPackage ../development/python-modules/pyls-isort {};
|
||||||
|
|
||||||
pyudev = callPackage ../development/python-modules/pyudev {
|
pyudev = callPackage ../development/python-modules/pyudev {
|
||||||
inherit (pkgs) fetchurl systemd;
|
inherit (pkgs) fetchurl systemd;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user