ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / coapthon3 / default.nix
blob643072269a3698dd59d0e59bb4aa76f8d159e36a
1 { buildPythonPackage, cachetools, fetchFromGitHub, isPy27, lib }:
3 buildPythonPackage rec {
4   pname = "CoAPthon3";
5   version = "1.0.2";
6   disabled = isPy27;
8   src = fetchFromGitHub {
9     owner = "Tanganelli";
10     repo = pname;
11     rev = version;
12     sha256 = "sha256-9QApoPUu3XFZY/lgjAsf5r2StFiRtUd1UXWDrzYUh6w=";
13   };
15   propagatedBuildInputs = [ cachetools ];
17   # tests take in the order of 10 minutes to execute and sometimes hang forever on tear-down
18   doCheck = false;
19   pythonImportsCheck = [ "coapthon" ];
21   meta = with lib; {
22     inherit (src.meta) homepage;
23     description = "Python3 library to the CoAP protocol compliant with the RFC.";
24     license = licenses.mit;
25     maintainers = with maintainers; [ urbas ];
26   };