1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-22 01:11:02 +03:00
nixpkgs/pkgs/development/python-modules/zulip/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
963 B
Nix
Raw Normal View History

2020-09-12 00:52:12 +02:00
{ lib
, buildPythonPackage
, isPy3k
, fetchFromGitHub
, requests
, matrix-client
, distro
2021-11-13 20:38:49 -08:00
, click
2021-04-09 11:03:29 +02:00
, cryptography
, pyopenssl
, pytestCheckHook
2020-09-12 00:52:12 +02:00
}:
buildPythonPackage rec {
pname = "zulip";
2021-11-13 20:38:49 -08:00
version = "0.8.1";
2020-09-12 00:52:12 +02:00
disabled = !isPy3k;
# no sdist on PyPI
src = fetchFromGitHub {
owner = "zulip";
repo = "python-zulip-api";
rev = version;
2021-11-13 20:38:49 -08:00
sha256 = "sha256-vYeZEz8nuZYL1stHLa595IbhyNbqqxH4mx7ISbqRAlA=";
2020-09-12 00:52:12 +02:00
};
2021-11-13 20:38:49 -08:00
sourceRoot = "${src.name}/zulip";
2020-09-12 00:52:12 +02:00
propagatedBuildInputs = [
requests
matrix-client
distro
2021-11-13 20:38:49 -08:00
click
2021-04-09 11:03:29 +02:00
# from requests[security]
cryptography
pyopenssl
];
checkInputs = [
pytestCheckHook
2020-09-12 00:52:12 +02:00
];
preCheck = ''
export COLUMNS=80
'';
2021-04-09 11:03:29 +02:00
pythonImportsCheck = [ "zulip" ];
2020-09-12 00:52:12 +02:00
meta = with lib; {
description = "Bindings for the Zulip message API";
homepage = "https://github.com/zulip/python-zulip-api";
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
};
}