mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
42 lines
843 B
Nix
42 lines
843 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# dependencies
|
|
deprecated,
|
|
memestra,
|
|
python-lsp-server,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyls-memestra";
|
|
version = "0.0.16";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "QuantStack";
|
|
repo = "pyls-memestra";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-C1d2BibjpoZCPSy39PkdcLiLIwZZG+XTDWXVjTT1Bws=";
|
|
};
|
|
|
|
dependencies = [
|
|
deprecated
|
|
memestra
|
|
python-lsp-server
|
|
];
|
|
|
|
# Tests fail because they rely on writting to read-only files
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "pyls_memestra" ];
|
|
|
|
meta = {
|
|
description = "Memestra plugin for the Python Language Server";
|
|
homepage = "https://github.com/QuantStack/pyls-memestra";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ GaetanLepage ];
|
|
};
|
|
}
|