Merge pull request #104528 from urbas/feature/coapthon3

This commit is contained in:
Sandro
2020-11-26 13:32:24 +01:00
committed by GitHub
3 changed files with 28 additions and 0 deletions
@@ -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 ];
};
}