python3Packages.aiocoap: init at 0.4b3
This commit is contained in:
parent
495066a47f
commit
cd6aa10b75
31
pkgs/development/python-modules/aiocoap/default.nix
Normal file
31
pkgs/development/python-modules/aiocoap/default.nix
Normal file
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -196,6 +196,8 @@ in {
|
|||||||
|
|
||||||
aioamqp = callPackage ../development/python-modules/aioamqp { };
|
aioamqp = callPackage ../development/python-modules/aioamqp { };
|
||||||
|
|
||||||
|
aiocoap = callPackage ../development/python-modules/aiocoap { };
|
||||||
|
|
||||||
aioconsole = callPackage ../development/python-modules/aioconsole { };
|
aioconsole = callPackage ../development/python-modules/aioconsole { };
|
||||||
|
|
||||||
aiocontextvars = callPackage ../development/python-modules/aiocontextvars { };
|
aiocontextvars = callPackage ../development/python-modules/aiocontextvars { };
|
||||||
|
Loading…
Reference in New Issue
Block a user