Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / agent-py / default.nix
blob584feec88dde298278879e3d86c4116b875b1aa5
1 { aiohttp, buildPythonPackage, fetchPypi, isPy3k, lib, python, requests }:
3 buildPythonPackage rec {
4   pname = "agent-py";
5   version = "0.0.23";
6   format = "setuptools";
8   disabled = !isPy3k;
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "1hx88m8b8kfb2gm6hii5ldjv7hlvqf99cz0w2vj0d0grrxcbn5cz";
13   };
15   propagatedBuildInputs = [ requests aiohttp ];
17   checkPhase = ''
18     ${python.interpreter} tests/test_agent.py
19   '';
21   meta = with lib; {
22     description = "A python wrapper around the Agent REST API.";
23     homepage = "https://github.com/ispysoftware/agent-py";
24     license = licenses.asl20;
25     maintainers = with maintainers; [ jamiemagee ];
26   };