python3Packages.pygls: init at 0.8.1
This commit is contained in:
parent
f0d90a2ef0
commit
db2ce6413e
2 changed files with 33 additions and 0 deletions
31
pkgs/development/python-modules/pygls/default.nix
Normal file
31
pkgs/development/python-modules/pygls/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
{ stdenv, buildPythonPackage, isPy3k, fetchFromGitHub
|
||||||
|
, mock, pytest, pytest-asyncio
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pygls";
|
||||||
|
version = "0.8.1";
|
||||||
|
disabled = !isPy3k;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "openlawlibrary";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1853rfdks5n8nw6ig96j7his5kqd75hrvzvd0win4niycaqsag6m";
|
||||||
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace setup.py \
|
||||||
|
--replace "pytest==4.5.0" "pytest"
|
||||||
|
'';
|
||||||
|
|
||||||
|
checkInputs = [ mock pytest pytest-asyncio ];
|
||||||
|
checkPhase = "pytest";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/openlawlibrary/pygls";
|
||||||
|
description = "Pythonic generic implementation of the Language Server Protocol";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ metadark ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3288,6 +3288,8 @@ in {
|
||||||
|
|
||||||
pyfxa = callPackage ../development/python-modules/pyfxa { };
|
pyfxa = callPackage ../development/python-modules/pyfxa { };
|
||||||
|
|
||||||
|
pygls = callPackage ../development/python-modules/pygls {};
|
||||||
|
|
||||||
pyhomematic = callPackage ../development/python-modules/pyhomematic { };
|
pyhomematic = callPackage ../development/python-modules/pyhomematic { };
|
||||||
|
|
||||||
pylama = callPackage ../development/python-modules/pylama { };
|
pylama = callPackage ../development/python-modules/pylama { };
|
||||||
|
|
Loading…
Reference in a new issue