Merge pull request #145597 from fabaff/bump-adafruit-platformdetect

python3Packages.adafruit-platformdetect: 3.17.1 -> 3.17.2
This commit is contained in:
Thiago Kenji Okada 2021-11-12 20:22:36 -03:00 committed by GitHub
commit 015b01eea0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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";