about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/ssdp/default.nix
blob: 36cf33d8c2524b958c6970088e3cefc5d37b8e51 (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
26
27
{ stdenv
, buildPythonPackage
, fetchPypi
, pkgs
, pbr
, pytest
}:

buildPythonPackage rec {
  pname = "ssdp";
  version = "1.0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0yhjqs9jyvwmba8fi72xfi9k8pxy11wkz4iywayrg71ka3la49bk";
  };

  buildInputs = [ pbr ];
  checkInputs = [ pytest ];
  propagatedBuildInputs = [ ];

  meta = with stdenv.lib; {
    homepage = https://github.com/codingjoe/ssdp;
    description = "Python asyncio library for Simple Service Discovery Protocol (SSDP).";
    license = licenses.mit;
  };
}