summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2021-01-29 16:39:35 +0100
committerGitHub <noreply@github.com>2021-01-29 16:39:35 +0100
commitb1280aaa3e330f1662e31eda2d865403b56e3844 (patch)
tree92a6bf4ee12cf4c53201b458d27db8bf18da0718 /pkgs/development/python-modules
parent3eae73d862707b31fc1996ffdad2314cd5771314 (diff)
parentcd6aa10b7518901daa9f238cd2e7940ca70d383d (diff)
Merge pull request #109482 from fabaff/aiocoap
python3Packages.aiocoap: init at 0.4b3
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/aiocoap/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/aiocoap/default.nix b/pkgs/development/python-modules/aiocoap/default.nix
new file mode 100644
index 000000000000..dd74a21bf9b8
--- /dev/null
+++ b/pkgs/development/python-modules/aiocoap/default.nix
@@ -0,0 +1,31 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, python
+}:
+
+buildPythonPackage rec {
+ pname = "aiocoap";
+ version = "0.4b3";
+
+ src = fetchFromGitHub {
+ owner = "chrysn";
+ repo = pname;
+ rev = version;
+ sha256 = "1zjg475xgvi19rqg7jmfgy5nfabq50aph0231p9jba211ps7cmxw";
+ };
+
+ checkPhase = ''
+ ${python.interpreter} -m aiocoap.cli.defaults
+ ${python.interpreter} -m unittest discover -v
+ '';
+
+ pythonImportsCheck = [ "aiocoap" ];
+
+ meta = with lib; {
+ description = "Python CoAP library";
+ homepage = "https://aiocoap.readthedocs.io/";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}