python3Packages.coapthon3: disabled tests
This commit is contained in:
parent
6c86b393ae
commit
2535a09289
@ -1,19 +1,25 @@
|
|||||||
{ buildPythonPackage, cachetools, fetchPypi, lib }:
|
{ buildPythonPackage, cachetools, fetchFromGitHub, lib }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "CoAPthon3";
|
pname = "CoAPthon3";
|
||||||
version = "1.0.1";
|
version = "1.0.1";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchFromGitHub {
|
||||||
inherit pname version;
|
owner = "Tanganelli";
|
||||||
sha256 = "1w6bwwd3qjp4b4fscagqg9wqxpdgvf4sxgzbk2d2rjqwlkyr1lnx";
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1im35i5i72y1p9qj8ixkwq7q6ksbrmi42giqiyfgjp1ym38snl69";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ cachetools ];
|
propagatedBuildInputs = [ cachetools ];
|
||||||
|
|
||||||
|
# tests take in the order of 10 minutes to execute and sometimes hang forever on tear-down
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "coapthon" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
inherit (src.meta) homepage;
|
||||||
description = "Python3 library to the CoAP protocol compliant with the RFC.";
|
description = "Python3 library to the CoAP protocol compliant with the RFC.";
|
||||||
homepage = "https://github.com/Tanganelli/${pname}";
|
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ urbas ];
|
maintainers = with maintainers; [ urbas ];
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user