python3Packages.zulip: 0.8.0 -> 0.8.1

This commit is contained in:
Robert Schütz 2021-11-13 20:38:49 -08:00
parent 516715e915
commit 0bf391720b

View file

@ -5,6 +5,7 @@
, requests , requests
, matrix-client , matrix-client
, distro , distro
, click
, cryptography , cryptography
, pyopenssl , pyopenssl
, pytestCheckHook , pytestCheckHook
@ -12,7 +13,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "zulip"; pname = "zulip";
version = "0.8.0"; version = "0.8.1";
disabled = !isPy3k; disabled = !isPy3k;
@ -21,14 +22,15 @@ buildPythonPackage rec {
owner = "zulip"; owner = "zulip";
repo = "python-zulip-api"; repo = "python-zulip-api";
rev = version; rev = version;
sha256 = "sha256-gJ+YRJC6wmQzPakApOqytyPy34cS/jjzEZhRIvWUBIQ="; sha256 = "sha256-vYeZEz8nuZYL1stHLa595IbhyNbqqxH4mx7ISbqRAlA=";
}; };
sourceRoot = "source/zulip"; sourceRoot = "${src.name}/zulip";
propagatedBuildInputs = [ propagatedBuildInputs = [
requests requests
matrix-client matrix-client
distro distro
click
# from requests[security] # from requests[security]
cryptography cryptography