pythonPackages.piccata: init at 1.0.1

This commit is contained in:
Gabriel Ebner 2019-05-19 12:11:41 +02:00
parent fbfc8b1732
commit 4ca821fbce
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{ buildPythonPackage, fetchPypi, lib, ipaddress }:
buildPythonPackage rec {
pname = "piccata";
version = "1.0.1";
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 ];
};
}

View File

@ -605,6 +605,8 @@ in {
phonopy = callPackage ../development/python-modules/phonopy { }; phonopy = callPackage ../development/python-modules/phonopy { };
piccata = callPackage ../development/python-modules/piccata {};
pims = callPackage ../development/python-modules/pims { }; pims = callPackage ../development/python-modules/pims { };
plantuml = callPackage ../tools/misc/plantuml { }; plantuml = callPackage ../tools/misc/plantuml { };