nixpkgs/pkgs/development/python-modules/ssdp/default.nix

32 lines
600 B
Nix
Raw Normal View History

{ lib
2019-04-30 20:49:58 +00:00
, buildPythonPackage
, fetchPypi
, isPy27
2019-04-30 20:49:58 +00:00
, pbr
, pytest
, isPy3k
2019-04-30 20:49:58 +00:00
}:
buildPythonPackage rec {
pname = "ssdp";
version = "1.0.1";
disabled = !isPy3k;
2019-04-30 20:49:58 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0yhjqs9jyvwmba8fi72xfi9k8pxy11wkz4iywayrg71ka3la49bk";
};
buildInputs = [ pbr ];
checkInputs = [ pytest ];
# test suite uses new async primitives
doCheck = !isPy27;
2019-04-30 20:49:58 +00:00
meta = with lib; {
homepage = "https://github.com/codingjoe/ssdp";
2019-04-30 20:49:58 +00:00
description = "Python asyncio library for Simple Service Discovery Protocol (SSDP).";
license = licenses.mit;
};
}