Merge pull request #310524 from fabaff/adafruit-platformdetect-bump
python312Packages.adafruit-platformdetect: 3.62.0 -> 3.63.0
This commit is contained in:
commit
2e65eb7c3d
1 changed files with 11 additions and 14 deletions
|
@ -1,33 +1,30 @@
|
||||||
{ lib
|
{
|
||||||
, buildPythonPackage
|
lib,
|
||||||
, fetchPypi
|
buildPythonPackage,
|
||||||
, setuptools-scm
|
fetchPypi,
|
||||||
, pythonOlder
|
setuptools-scm,
|
||||||
|
pythonOlder,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "adafruit-platformdetect";
|
pname = "adafruit-platformdetect";
|
||||||
version = "3.62.0";
|
version = "3.63.0";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
pname = "Adafruit-PlatformDetect";
|
pname = "adafruit_platformdetect";
|
||||||
inherit version;
|
inherit version;
|
||||||
hash = "sha256-L2CbqWqyOo4mq+KsO8FYAyHClRKFXMLWWtfYEg0SD34=";
|
hash = "sha256-bntcP/P0eoQsjIQQcJLtsXsPcSylKVNUp+f/RC/U5m4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
build-system = [ setuptools-scm ];
|
||||||
setuptools-scm
|
|
||||||
];
|
|
||||||
|
|
||||||
# Project has not published tests yet
|
# Project has not published tests yet
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
pythonImportsCheck = [
|
pythonImportsCheck = [ "adafruit_platformdetect" ];
|
||||||
"adafruit_platformdetect"
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Platform detection for use by Adafruit libraries";
|
description = "Platform detection for use by Adafruit libraries";
|
||||||
|
|
Loading…
Reference in a new issue