From 7a9f6e18d542831ce4934389f10bb4290745ec28 Mon Sep 17 00:00:00 2001 From: Matej Urbas Date: Sat, 21 Nov 2020 22:46:25 +0000 Subject: [PATCH 1/2] maintainers: add urbas --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index e273e90c295..313c4a33e1f 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -9041,6 +9041,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"; From f85ea6e08d003365ccef0c302bc46e81112e02e9 Mon Sep 17 00:00:00 2001 From: Matej Urbas Date: Sat, 21 Nov 2020 22:47:24 +0000 Subject: [PATCH 2/2] python3Packages.coapthon3: init at 1.0.1 --- .../python-modules/coapthon3/default.nix | 20 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 22 insertions(+) create mode 100644 pkgs/development/python-modules/coapthon3/default.nix diff --git a/pkgs/development/python-modules/coapthon3/default.nix b/pkgs/development/python-modules/coapthon3/default.nix new file mode 100644 index 00000000000..fbca43e4e71 --- /dev/null +++ b/pkgs/development/python-modules/coapthon3/default.nix @@ -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 ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4fef3c3946f..09f1105d979 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -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 { };