Merge pull request #133170 from fabaff/bump-pymata-express

python3Packages.pymata-express: 1.20 -> 1.21
This commit is contained in:
Sandro 2021-08-08 20:26:05 +02:00 committed by GitHub
commit 8821ccefa8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,20 +7,23 @@
buildPythonPackage rec {
pname = "pymata-express";
version = "1.20";
version = "1.21";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "MrYsLab";
repo = pname;
rev = "v${version}";
sha256 = "sha256-spYmd+Cb7Ej5FmniuJYAVVmq0mhOz5fu4+2UUXctRWs=";
rev = version;
sha256 = "1mibyn84kjahrv3kn51yl5mhkyig4piv6wanggzjflh5nm96bhy8";
};
propagatedBuildInputs = [ pyserial ];
propagatedBuildInputs = [
pyserial
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pymata_express" ];
meta = with lib; {