blob: 9e8fb88dbac0ce2ff856a232720de5edbd65560d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
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 ];
};
}
|