From d4e2b869f819b90024888aecaea24e14cad9c6fd Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 9 May 2023 19:32:43 +0200 Subject: [PATCH] python310Packages.censys: 2.2.0 -> 2.2.2 Changelog: https://github.com/censys/censys-python/releases/tag/v2.2.2 --- pkgs/development/python-modules/censys/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/censys/default.nix b/pkgs/development/python-modules/censys/default.nix index 014776d30ca5..9fe41827b0a3 100644 --- a/pkgs/development/python-modules/censys/default.nix +++ b/pkgs/development/python-modules/censys/default.nix @@ -1,4 +1,5 @@ { lib +, argcomplete , backoff , buildPythonPackage , fetchFromGitHub @@ -17,7 +18,7 @@ buildPythonPackage rec { pname = "censys"; - version = "2.2.0"; + version = "2.2.2"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -26,7 +27,7 @@ buildPythonPackage rec { owner = "censys"; repo = "censys-python"; rev = "refs/tags/v${version}"; - hash = "sha256-CtW6EN9oH/OIZ4XaoSuKlMYK9Mh/ewRs6y34xbfY234="; + hash = "sha256-cg9f2ltl1zeQjCTI+UfUKAKacJ64MdvZ49Q8a06OLLA="; }; nativeBuildInputs = [ @@ -35,6 +36,7 @@ buildPythonPackage rec { ]; propagatedBuildInputs = [ + argcomplete backoff requests rich @@ -73,6 +75,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python API wrapper for the Censys Search Engine (censys.io)"; homepage = "https://github.com/censys/censys-python"; + changelog = "https://github.com/censys/censys-python/releases/tag/v${version}"; license = with licenses; [ asl20 ]; maintainers = with maintainers; [ fab ]; };