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

21 lines
511 B
Nix
Raw Normal View History

{ buildPythonPackage, fetchPypi, lib, ipaddress, isPy3k }:
2019-05-19 10:11:41 +00:00
buildPythonPackage rec {
pname = "piccata";
version = "1.0.1";
disabled = isPy3k;
2019-05-19 10:11:41 +00: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 ];
};
}