about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/piccata/default.nix
blob: f1cfb362a80cd6db8e62662950127e631338764f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ buildPythonPackage, fetchPypi, lib, ipaddress, isPy3k }:

buildPythonPackage rec {
  pname = "piccata";
  version = "1.0.1";
  disabled = isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "45f6c98c2ea809d445040888117f99bc3ee843490d86fecc5805ff5ea41508f7";
  };

  propagatedBuildInputs = [ ipaddress ];

  meta = {
    description = "Simple CoAP (RFC7252) toolkit";
    homepage = "https://github.com/NordicSemiconductor/piccata";
    maintainers = with lib.maintainers; [ gebner ];
  };
}