32 lines
610 B
Nix
32 lines
610 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy27
|
|
, pbr
|
|
, pytest
|
|
, isPy3k
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ssdp";
|
|
version = "1.0.1";
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0yhjqs9jyvwmba8fi72xfi9k8pxy11wkz4iywayrg71ka3la49bk";
|
|
};
|
|
|
|
buildInputs = [ pbr ];
|
|
checkInputs = [ pytest ];
|
|
|
|
# test suite uses new async primitives
|
|
doCheck = !isPy27;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/codingjoe/ssdp";
|
|
description = "Python asyncio library for Simple Service Discovery Protocol (SSDP).";
|
|
license = licenses.mit;
|
|
};
|
|
}
|