about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/sseclient-py/default.nix
blob: 54dfdd9d9498853dde41307010e10cb6e44ba7a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ buildPythonPackage, fetchFromGitHub, lib, python }:

buildPythonPackage rec {
  pname = "sseclient-py";
  version = "1.7.2";

  src = fetchFromGitHub {
    owner = "mpetazzoni";
    repo = "sseclient";
    rev = "sseclient-py-${version}";
    sha256 = "096spyv50jir81xiwkg9l88ycp1897d3443r6gi1by8nkp4chvix";
  };

  # based on tox.ini
  checkPhase = ''
    ${python.interpreter} tests/unittests.py
  '';

  meta = with lib; {
    description = "Pure-Python Server Side Events (SSE) client";
    homepage = "https://github.com/mpetazzoni/sseclient";
    license = licenses.asl20;
    maintainers = with maintainers; [ jamiemagee ];
  };
}