mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 01:03:25 +00:00
Merge pull request #44869 from Mic92/pyls-black
python.pkgs.pyls-black: init at 0.2.1
This commit is contained in:
commit
e140489e90
32
pkgs/development/python-modules/pyls-black/default.nix
Normal file
32
pkgs/development/python-modules/pyls-black/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchFromGitHub
|
||||||
|
, black, toml, pytest, python-language-server, isPy3k
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pyls-black";
|
||||||
|
version = "0.2.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "rupert";
|
||||||
|
repo = "pyls-black";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0xa3iv8nhnj0lw0dh41qb0dqp55sb6rdxalbk60v8jll6qyc0si8";
|
||||||
|
};
|
||||||
|
|
||||||
|
disabled = !isPy3k;
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
pytest
|
||||||
|
'';
|
||||||
|
|
||||||
|
checkInputs = [ pytest ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ black toml python-language-server ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = https://github.com/rupert/pyls-black;
|
||||||
|
description = "Black plugin for the Python Language Server";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.mic92 ];
|
||||||
|
};
|
||||||
|
}
|
@ -21,8 +21,8 @@ buildPythonPackage rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = https://github.com/palantir/python-language-server;
|
homepage = https://github.com/paradoxxxzero/pyls-isort;
|
||||||
description = "An implementation of the Language Server Protocol for Python";
|
description = "Isort plugin for python-language-server";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = [ maintainers.mic92 ];
|
maintainers = [ maintainers.mic92 ];
|
||||||
};
|
};
|
||||||
|
@ -1,29 +1,21 @@
|
|||||||
{ lib, buildPythonPackage, fetchFromGitHub, fetchpatch
|
{ lib, buildPythonPackage, fetchFromGitHub
|
||||||
, future, python-language-server, mypy, configparser
|
, future, python-language-server, mypy, configparser
|
||||||
, pytest, mock, isPy3k, pytestcov, coverage
|
, pytest, mock, isPy3k, pytestcov, coverage
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pyls-mypy";
|
pname = "pyls-mypy";
|
||||||
version = "0.1.2";
|
version = "0.1.3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "tomv564";
|
owner = "tomv564";
|
||||||
repo = "pyls-mypy";
|
repo = "pyls-mypy";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0wa038a8a8yj3wmrc7q909nj4b5d3lq70ysbw7rpsnyb0x06m826";
|
sha256 = "0v7ghcd1715lxlfq304b7xhchp31ahdd89lf6za4n0l59dz74swh";
|
||||||
};
|
};
|
||||||
|
|
||||||
disabled = !isPy3k;
|
disabled = !isPy3k;
|
||||||
|
|
||||||
patches = [
|
|
||||||
# also part of https://github.com/tomv564/pyls-mypy/pull/10
|
|
||||||
(fetchpatch {
|
|
||||||
url = "https://github.com/Mic92/pyls-mypy/commit/4c727120d2cbd8bf2825e1491cd55175f03266d2.patch";
|
|
||||||
sha256 = "1dgn5z742swpxwknmgvm65jpxq9zwzhggw4nl6ys7yw8r49kqgrl";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
HOME=$TEMPDIR pytest
|
HOME=$TEMPDIR pytest
|
||||||
'';
|
'';
|
||||||
@ -35,8 +27,8 @@ buildPythonPackage rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = https://github.com/palantir/python-language-server;
|
homepage = https://github.com/tomv564/pyls-mypy;
|
||||||
description = "An implementation of the Language Server Protocol for Python";
|
description = "Mypy plugin for the Python Language Server";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = [ maintainers.mic92 ];
|
maintainers = [ maintainers.mic92 ];
|
||||||
};
|
};
|
||||||
|
@ -11003,10 +11003,12 @@ in {
|
|||||||
|
|
||||||
python-language-server = callPackage ../development/python-modules/python-language-server {};
|
python-language-server = callPackage ../development/python-modules/python-language-server {};
|
||||||
|
|
||||||
pyls-mypy = callPackage ../development/python-modules/pyls-mypy {};
|
pyls-black = callPackage ../development/python-modules/pyls-black {};
|
||||||
|
|
||||||
pyls-isort = callPackage ../development/python-modules/pyls-isort {};
|
pyls-isort = callPackage ../development/python-modules/pyls-isort {};
|
||||||
|
|
||||||
|
pyls-mypy = callPackage ../development/python-modules/pyls-mypy {};
|
||||||
|
|
||||||
pyudev = callPackage ../development/python-modules/pyudev {
|
pyudev = callPackage ../development/python-modules/pyudev {
|
||||||
inherit (pkgs) systemd;
|
inherit (pkgs) systemd;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user