Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / asyncserial / default.nix
bloba40d31510c4062747b78bc815264abedace0e8d9
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pyserial
5 }:
7 buildPythonPackage rec {
8   pname = "asyncserial";
9   version = "unstable-2022-06-10";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "m-labs";
14     repo = "asyncserial";
15     rev = "446559fec892a556876b17d17f182ae9647d5952";
16     hash = "sha256-WExmgh55sTH2w7wV3i96J1F1FN7L5rX3L/Ayvt2Kw/g=";
17   };
19   propagatedBuildInputs = [
20     pyserial
21   ];
23   pythonImportsCheck = [ "asyncserial" ];
25   meta = with lib; {
26     description = "asyncio support for pyserial";
27     homepage = "https://github.com/m-labs/asyncserial";
28     license = licenses.bsd2;
29     maintainers = with maintainers; [ doronbehar ];
30   };