python3Packages.adafruit-platformdetect: 3.17.1 -> 3.17.2

This commit is contained in:
Fabian Affolter 2021-11-12 09:15:32 +01:00
parent be791624fc
commit 7ea6b65f58

View file

@ -6,19 +6,25 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "adafruit-platformdetect"; pname = "adafruit-platformdetect";
version = "3.17.1"; version = "3.17.2";
format = "setuptools";
src = fetchPypi { src = fetchPypi {
pname = "Adafruit-PlatformDetect"; pname = "Adafruit-PlatformDetect";
inherit version; inherit version;
sha256 = "sha256-M+0q1u/ZcAg2Pii/B2n0v+rw/zIAjeVej/VThi9NLwI="; sha256 = "sha256-IA846zNFmBqSUc0oXJ0eA5wj6PzQ28jxO22z5WNOT24=";
}; };
nativeBuildInputs = [ setuptools-scm ]; nativeBuildInputs = [
setuptools-scm
];
# Project has not published tests yet # Project has not published tests yet
doCheck = false; doCheck = false;
pythonImportsCheck = [ "adafruit_platformdetect" ];
pythonImportsCheck = [
"adafruit_platformdetect"
];
meta = with lib; { meta = with lib; {
description = "Platform detection for use by Adafruit libraries"; description = "Platform detection for use by Adafruit libraries";