python3Packages.asyncserial: unstable-2022-06-10 -> 1.0
This commit is contained in:
@@ -2,29 +2,32 @@
|
|||||||
lib,
|
lib,
|
||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
|
setuptools,
|
||||||
pyserial,
|
pyserial,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage {
|
buildPythonPackage rec {
|
||||||
pname = "asyncserial";
|
pname = "asyncserial";
|
||||||
version = "unstable-2022-06-10";
|
version = "1.0";
|
||||||
format = "setuptools";
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "m-labs";
|
owner = "m-labs";
|
||||||
repo = "asyncserial";
|
repo = "asyncserial";
|
||||||
rev = "446559fec892a556876b17d17f182ae9647d5952";
|
tag = version;
|
||||||
hash = "sha256-WExmgh55sTH2w7wV3i96J1F1FN7L5rX3L/Ayvt2Kw/g=";
|
hash = "sha256-ZHzgJnbsDVxVcp09LXq9JZp46+dorgdP8bAiTB59K28=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ pyserial ];
|
build-system = [ setuptools ];
|
||||||
|
|
||||||
|
dependencies = [ pyserial ];
|
||||||
|
|
||||||
pythonImportsCheck = [ "asyncserial" ];
|
pythonImportsCheck = [ "asyncserial" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "asyncio support for pyserial";
|
description = "asyncio support for pyserial";
|
||||||
homepage = "https://github.com/m-labs/asyncserial";
|
homepage = "https://github.com/m-labs/asyncserial";
|
||||||
license = licenses.bsd2;
|
license = lib.licenses.bsd2;
|
||||||
maintainers = with maintainers; [ doronbehar ];
|
maintainers = with lib.maintainers; [ doronbehar ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user