mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 04:02:10 +00:00
Merge pull request #104528 from urbas/feature/coapthon3
This commit is contained in:
commit
9f36dd3d66
|
@ -9035,6 +9035,12 @@
|
|||
githubId = 619015;
|
||||
name = "Svintsov Dmitry";
|
||||
};
|
||||
urbas = {
|
||||
email = "matej.urbas@gmail.com";
|
||||
github = "urbas";
|
||||
githubId = 771193;
|
||||
name = "Matej Urbas";
|
||||
};
|
||||
uri-canva = {
|
||||
email = "uri@canva.com";
|
||||
github = "uri-canva";
|
||||
|
|
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 ];
|
||||
};
|
||||
}
|
|
@ -1255,6 +1255,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