Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / aioserial / default.nix
blobca0c4d2e8c6e0db578743036c3eef64ae476cedf
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pyserial
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "aioserial";
10   version = "1.3.1";
11   format = "setuptools";
13   disabled = pythonOlder "3.6";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-cCvwOw64S47y2NrFy5JeHmhdzpj3exJVabxv0rO1gig=";
18   };
20   propagatedBuildInputs = [
21     pyserial
22   ];
24   # Project has no tests
25   doCheck = false;
27   pythonImportsCheck = [ "aioserial" ];
29   meta = with lib; {
30     description = "Python module for async serial communication";
31     homepage = "https://github.com/changyuheng/aioserial";
32     license = licenses.mpl20;
33     maintainers = with maintainers; [ fab ];
34   };