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 {
pname = "adafruit-platformdetect";
version = "3.17.1";
version = "3.17.2";
format = "setuptools";
src = fetchPypi {
pname = "Adafruit-PlatformDetect";
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
doCheck = false;
pythonImportsCheck = [ "adafruit_platformdetect" ];
pythonImportsCheck = [
"adafruit_platformdetect"
];
meta = with lib; {
description = "Platform detection for use by Adafruit libraries";