Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 20 lines 511 B view raw
1{ buildPythonPackage, fetchPypi, lib, ipaddress, isPy3k }: 2 3buildPythonPackage rec { 4 pname = "piccata"; 5 version = "1.0.1"; 6 disabled = isPy3k; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "45f6c98c2ea809d445040888117f99bc3ee843490d86fecc5805ff5ea41508f7"; 11 }; 12 13 propagatedBuildInputs = [ ipaddress ]; 14 15 meta = { 16 description = "Simple CoAP (RFC7252) toolkit"; 17 homepage = "https://github.com/NordicSemiconductor/piccata"; 18 maintainers = with lib.maintainers; [ gebner ]; 19 }; 20}