python3Packages.pyserial-asyncio: init at 0.4

This commit is contained in:
Elis Hirwing 2019-11-29 17:57:26 +01:00
parent 41beae8a9d
commit 229c002c8c
No known key found for this signature in database
GPG key ID: D57EFA625C9A925F
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, buildPythonPackage, fetchPypi, isPy3k
, pyserial }:
buildPythonPackage rec {
pname = "pyserial-asyncio";
version = "0.4";
disabled = !isPy3k; # Doesn't support python older than 3.4
buildInputs = [ pyserial ];
src = fetchPypi {
inherit pname version;
sha256 = "1vlsb0d03krxlj7vpvyhpinnyxyy8s3lk5rs8ba2932dhyl7f1n4";
};
meta = with stdenv.lib; {
description = "asyncio extension package for pyserial";
homepage = "https://github.com/pyserial/pyserial-asyncio";
license = licenses.bsd3;
maintainers = with maintainers; [ etu ];
platforms = platforms.linux;
};
}

View file

@ -4814,6 +4814,8 @@ in {
pyserial = callPackage ../development/python-modules/pyserial {};
pyserial-asyncio = callPackage ../development/python-modules/pyserial-asyncio { };
pysonos = callPackage ../development/python-modules/pysonos {};
pymongo = callPackage ../development/python-modules/pymongo {};