2019-10-07 16:20:23 +01:00
|
|
|
{ buildPythonPackage, fetchPypi, lib, ipaddress, isPy3k }:
|
2019-05-19 11:11:41 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "piccata";
|
|
|
|
version = "1.0.1";
|
2019-10-07 16:20:23 +01:00
|
|
|
disabled = isPy3k;
|
2019-05-19 11:11:41 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "45f6c98c2ea809d445040888117f99bc3ee843490d86fecc5805ff5ea41508f7";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ ipaddress ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Simple CoAP (RFC7252) toolkit";
|
|
|
|
homepage = "https://github.com/NordicSemiconductor/piccata";
|
|
|
|
maintainers = with lib.maintainers; [ gebner ];
|
|
|
|
};
|
|
|
|
}
|