python311Packages.py-nextbusnext: 1.0.1 -> 1.0.2

https://github.com/ViViDboarder/py_nextbus/compare/refs/tags/v1.0.1...v1.0.2
This commit is contained in:
Martin Weinelt 2023-11-04 20:08:12 +01:00
parent 5053502920
commit b204ea290c
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -3,12 +3,13 @@
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "py-nextbusnext";
version = "1.0.1";
format = "setuptools";
version = "1.0.2";
pyproject = true;
disabled = pythonOlder "3.8";
@ -16,9 +17,13 @@ buildPythonPackage rec {
owner = "ViViDboarder";
repo = "py_nextbus";
rev = "refs/tags/v${version}";
hash = "sha256-iJPbRhXgA1AIkyf3zGZ9tuFAw8h6oyBbh7Ln/y72fyQ=";
hash = "sha256-5zD8AKb4/4x4cVA922OlzSOXlg3F6QCcr16agEQkUWM=";
};
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
pytestCheckHook
];