python.pkgs.pyls-isort: init at 0.1.2

This commit is contained in:
Jörg Thalheim 2018-05-24 12:52:59 +01:00
parent d4153a6fb8
commit 5432e4d0ad
2 changed files with 31 additions and 0 deletions

View 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 ];
};
}

View file

@ -11272,6 +11272,8 @@ in {
pyls-mypy = callPackage ../development/python-modules/pyls-mypy {};
pyls-isort = callPackage ../development/python-modules/pyls-isort {};
pyudev = callPackage ../development/python-modules/pyudev {
inherit (pkgs) fetchurl systemd;
};