{ lib, buildPythonPackage, fetchPypi, }: buildPythonPackage rec { pname = "pencompy"; version = "0.0.4"; format = "setuptools"; src = fetchPypi { inherit pname version; hash = "sha256-PjALTsk0Msv3g8M6k0v6ftzDAuFKyIPSpfvT8S3YL48="; }; # Module has no tests doCheck = false; pythonImportsCheck = [ "pencompy" ]; meta = { description = "Library for interacting with Pencom relay boards"; homepage = "https://github.com/dubnom/pencompy"; license = with lib.licenses; [ mit ]; maintainers = with lib.maintainers; [ fab ]; }; }