python3Packages.coapthon3: init at 1.0.1

This commit is contained in:
Matej Urbas 2020-11-21 22:47:24 +00:00
parent 7a9f6e18d5
commit f85ea6e08d
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ buildPythonPackage, cachetools, fetchPypi, lib }:
buildPythonPackage rec {
pname = "CoAPthon3";
version = "1.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "1w6bwwd3qjp4b4fscagqg9wqxpdgvf4sxgzbk2d2rjqwlkyr1lnx";
};
propagatedBuildInputs = [ cachetools ];
meta = with lib; {
description = "Python3 library to the CoAP protocol compliant with the RFC.";
homepage = "https://github.com/Tanganelli/${pname}";
license = licenses.mit;
maintainers = with maintainers; [ urbas ];
};
}

View file

@ -1254,6 +1254,8 @@ in {
cnvkit = callPackage ../development/python-modules/cnvkit { };
coapthon3 = callPackage ../development/python-modules/coapthon3 { };
coconut = callPackage ../development/python-modules/coconut { };
cocotb = callPackage ../development/python-modules/cocotb { };