python3Packages.coapthon3: init at 1.0.1
This commit is contained in:
parent
7a9f6e18d5
commit
f85ea6e08d
2 changed files with 22 additions and 0 deletions
20
pkgs/development/python-modules/coapthon3/default.nix
Normal file
20
pkgs/development/python-modules/coapthon3/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue