lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.irisclient: init 1.2.0

+45 -2
+43
pkgs/development/python-modules/irisclient/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + setuptools, 5 + fetchFromGitHub, 6 + requests, 7 + pytestCheckHook, 8 + httmock, 9 + pytest-mock, 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "irisclient"; 14 + version = "1.2.0"; 15 + pyproject = true; 16 + 17 + src = fetchFromGitHub { 18 + owner = "houqp"; 19 + repo = "iris-python-client"; 20 + tag = "v${version}"; 21 + hash = "sha256-fXMw2BopkEqjklR6jr7QQIZyxLq6NHKm2rHwTCbtxR0="; 22 + }; 23 + 24 + build-system = [ setuptools ]; 25 + 26 + dependencies = [ requests ]; 27 + 28 + checkInputs = [ 29 + httmock 30 + pytestCheckHook 31 + pytest-mock 32 + ]; 33 + 34 + pythonImportsCheck = [ "irisclient" ]; 35 + 36 + meta = { 37 + description = "Python client for Iris REST api"; 38 + changelog = "https://github.com/houqp/iris-python-client/blob/v${src.tag}/HISTORY.rst"; 39 + homepage = "https://github.com/houqp/iris-python-client"; 40 + license = lib.licenses.bsd2; 41 + maintainers = with lib.maintainers; [ onny ]; 42 + }; 43 + }
+2 -2
pkgs/top-level/python-packages.nix
··· 4757 4757 callPackage ../development/python-modules/faraday-agent-parameters-types 4758 4758 { }; 4759 4759 4760 - falcon-cors = callPackage ../development/python-modules/falcon-cors { }; 4761 - 4762 4760 faraday-plugins = callPackage ../development/python-modules/faraday-plugins { }; 4763 4761 4764 4762 farama-notifications = callPackage ../development/python-modules/farama-notifications { }; ··· 6892 6890 ircstates = callPackage ../development/python-modules/ircstates { }; 6893 6891 6894 6892 irctokens = callPackage ../development/python-modules/irctokens { }; 6893 + 6894 + irisclient = callPackage ../development/python-modules/irisclient { }; 6895 6895 6896 6896 isal = callPackage ../development/python-modules/isal { }; 6897 6897