{ lib , buildPythonPackage , fetchPypi , setuptools-scm }: buildPythonPackage rec { pname = "adafruit-platformdetect"; version = "3.14.0"; src = fetchPypi { pname = "Adafruit-PlatformDetect"; inherit version; sha256 = "1v33546cflsbm6k8mhmi1r5c8fqjlirvzmf62a604xns8wrxb88h"; }; nativeBuildInputs = [ setuptools-scm ]; # Project has not published tests yet doCheck = false; pythonImportsCheck = [ "adafruit_platformdetect" ]; meta = with lib; { description = "Platform detection for use by Adafruit libraries"; homepage = "https://github.com/adafruit/Adafruit_Python_PlatformDetect"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; }; }