Merge branch 'master' into add-missing-licenses

Conflicts:
	pkgs/tools/networking/network-manager/fortisslvpn.nix
This commit is contained in:
Pascal Wittmann
2018-08-11 09:36:34 +02:00
158 changed files with 2671 additions and 1385 deletions

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

View File

@@ -21,8 +21,8 @@ buildPythonPackage rec {
];
meta = with lib; {
homepage = https://github.com/palantir/python-language-server;
description = "An implementation of the Language Server Protocol for Python";
homepage = https://github.com/paradoxxxzero/pyls-isort;
description = "Isort plugin for python-language-server";
license = licenses.mit;
maintainers = [ maintainers.mic92 ];
};

View File

@@ -1,29 +1,21 @@
{ lib, buildPythonPackage, fetchFromGitHub, fetchpatch
{ lib, buildPythonPackage, fetchFromGitHub
, future, python-language-server, mypy, configparser
, pytest, mock, isPy3k, pytestcov, coverage
}:
buildPythonPackage rec {
pname = "pyls-mypy";
version = "0.1.2";
version = "0.1.3";
src = fetchFromGitHub {
owner = "tomv564";
repo = "pyls-mypy";
rev = version;
sha256 = "0wa038a8a8yj3wmrc7q909nj4b5d3lq70ysbw7rpsnyb0x06m826";
sha256 = "0v7ghcd1715lxlfq304b7xhchp31ahdd89lf6za4n0l59dz74swh";
};
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 = ''
HOME=$TEMPDIR pytest
'';
@@ -35,8 +27,8 @@ buildPythonPackage rec {
];
meta = with lib; {
homepage = https://github.com/palantir/python-language-server;
description = "An implementation of the Language Server Protocol for Python";
homepage = https://github.com/tomv564/pyls-mypy;
description = "Mypy plugin for the Python Language Server";
license = licenses.mit;
maintainers = [ maintainers.mic92 ];
};

View File

@@ -1,13 +1,13 @@
{ fetchPypi, buildPythonPackage, lib }:
buildPythonPackage rec {
version = "3.9.2";
version = "3.9.4";
pname = "thespian";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "aec9793fecf45bb91fe919dc61b5c48a4aadfb9f94b06cd92883df7952eacf95";
sha256 = "98766eb304ef922133baca12a75eedd8d9b709c58bd9af50bfa5593dc3ffe0e1";
};
# Do not run the test suite: it takes a long time and uses

View File

@@ -20,6 +20,7 @@
, pytestcov
, requests-mock
, tornado
, attrs
}:
buildPythonPackage rec {
@@ -32,6 +33,7 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [
attrs
appdirs
cached-property
defusedxml