python310Packages.connio: init at 0.2.0
This commit is contained in:
parent
4c15dad466
commit
3e93dfa004
42
pkgs/development/python-modules/connio/default.nix
Normal file
42
pkgs/development/python-modules/connio/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user