Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pylsp-rope / default.nix
blob22776d4dc6afc98bd44e7d90ec65c9106bfece96
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , rope
5 , pytestCheckHook
6 , python-lsp-server
7 , pythonOlder
8 }:
10 buildPythonPackage rec {
11   pname = "pylsp-rope";
12   version = "0.1.16";
13   format = "setuptools";
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-1oC2iMYKQCV6iELsgIpuDeFZakelMA8irs/caVVQIKc=";
20   };
22   propagatedBuildInputs = [
23     rope
24     python-lsp-server
25   ];
27   nativeCheckInputs = [
28     pytestCheckHook
29   ];
31   pythonImportsCheck = [
32     "pylsp_rope"
33   ];
35   meta = with lib; {
36     description = "Extended refactoring capabilities for Python LSP Server using Rope";
37     homepage = "https://github.com/python-rope/pylsp-rope";
38     license = licenses.mit;
39     maintainers = with maintainers; [ GaetanLepage ];
40   };