mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
39 lines
766 B
Nix
39 lines
766 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, deprecated
|
|
, memestra
|
|
, python-lsp-server
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyls-memestra";
|
|
version = "0.0.16";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-zMVDd2uB4znw38z3yb0Nt7qQH5dGHTbQBIZO/qo1/t8=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
deprecated
|
|
memestra
|
|
python-lsp-server
|
|
];
|
|
|
|
# Tests fail because they rely on writting to read-only files
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"pyls_memestra"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Memestra plugin for the Python Language Server";
|
|
homepage = "https://github.com/QuantStack/pyls-memestra";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ GaetanLepage ];
|
|
};
|
|
}
|