about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/aiocoap/default.nix
blob: dd74a21bf9b883c0da1eceb15d1c32e375a53a71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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 ];
  };
}