python310Packages.pygls 1.0.1 -> 1.1.1 https://repology.org/project/python:pygls/versions attrpath: python310Packages.pygls Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/l32klpxvc4xbfwlln4ff4albc7gi5195-packages.json.drv building '/nix/store/l32klpxvc4xbfwlln4ff4albc7gi5195-packages.json.drv'... Going to be running update for following packages: - python3.10-pygls-1.0.1 Press Enter key to continue... Running update for: - python3.10-pygls-1.0.1: UPDATING ... - python3.10-pygls-1.0.1: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/pygls/default.nix b/pkgs/development/python-modules/pygls/default.nix index 7ca6b344c9a2..170c70fe8ebb 100644 --- a/pkgs/development/python-modules/pygls/default.nix +++ b/pkgs/development/python-modules/pygls/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "pygls"; - version = "1.0.1"; + version = "1.1.1"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -23,7 +23,7 @@ buildPythonPackage rec { owner = "openlawlibrary"; repo = "pygls"; rev = "refs/tags/v${version}"; - hash = "sha256-ovm897Vu6HRziGee3NioM1BA65mLe3F5Z2k0E+A35Gs="; + hash = "sha256-FOuBS/UJpkYbuIu193vkSpN/77gf+UWiS5f/t8BpAk4="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; No auto update branch exists Old version 1.0.1" not present in staging derivation file with contents: { lib , stdenv , buildPythonPackage , pythonOlder , fetchFromGitHub , setuptools-scm , lsprotocol , toml , typeguard , mock , pytest-asyncio , pytestCheckHook }: buildPythonPackage rec { pname = "pygls"; version = "1.0.2"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "openlawlibrary"; repo = "pygls"; rev = "refs/tags/v${version}"; hash = "sha256-z673NRlnudFyDjKoM+xCbMRTFwh+tjUf4BaNtjwvKx8="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; nativeBuildInputs = [ setuptools-scm toml ]; propagatedBuildInputs = [ lsprotocol typeguard ]; nativeCheckInputs = [ mock pytest-asyncio pytestCheckHook ]; # Fixes hanging tests on Darwin __darwinAllowLocalNetworking = true; preCheck = lib.optionalString stdenv.isDarwin '' # Darwin issue: OSError: [Errno 24] Too many open files ulimit -n 1024 ''; pythonImportsCheck = [ "pygls" ]; meta = with lib; { changelog = "https://github.com/openlawlibrary/pygls/blob/${src.rev}/CHANGELOG.md"; description = "Pythonic generic implementation of the Language Server Protocol"; homepage = "https://github.com/openlawlibrary/pygls"; license = licenses.asl20; maintainers = with maintainers; [ kira-bruneau ]; }; }