python310Packages.connio: init at 0.2.0

This commit is contained in:
Fabian Affolter 2022-11-12 13:19:20 +01:00
parent 4c15dad466
commit 3e93dfa004
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,42 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, serialio
, sockio
}:
buildPythonPackage rec {
pname = "connio";
version = "0.2.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "tiagocoutinho";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-fPM7Ya69t0jpZhKM2MTk6BwjvoW3a8SV3k000LB9Ypo=";
};
propagatedBuildInputs = [
serialio
sockio
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"connio"
];
meta = with lib; {
description = "Library for concurrency agnostic communication";
homepage = "https://github.com/tiagocoutinho/connio";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -1564,6 +1564,8 @@ self: super: with self; {
connection-pool = callPackage ../development/python-modules/connection-pool { };
connio = callPackage ../development/python-modules/connio { };
coqpit = callPackage ../development/python-modules/coqpit { };
coqui-trainer = callPackage ../development/python-modules/coqui-trainer {};