Merge pull request #242063 from r-ryantm/auto-update/python310Packages.pvlib

python310Packages.pvlib: 0.10.0 -> 0.10.1
This commit is contained in:
Weijia Wang 2023-07-09 12:05:52 +03:00 committed by GitHub
commit e73241796b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,6 +9,7 @@
, pytest-remotedata
, pytest-rerunfailures
, pytest-timeout
, pythonOlder
, pytz
, requests
, requests-mock
@ -18,12 +19,14 @@
buildPythonPackage rec {
pname = "pvlib";
version = "0.10.0";
version = "0.10.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi{
inherit pname version;
hash = "sha256-K/f6tjBznXYJz+Y5tVS1Bj+DKcPtCPlwiKe/YTEsGSI=";
hash = "sha256-H3wiNCmnZ6+GjXMhDbeOL98Yy7V6s2oOFAKWJCb8XCk=";
};
nativeBuildInputs = [
@ -48,9 +51,14 @@ buildPythonPackage rec {
requests-mock
];
pythonImportsCheck = [
"pvlib"
];
meta = with lib; {
homepage = "https://pvlib-python.readthedocs.io";
description = "Simulate the performance of photovoltaic energy systems";
changelog = "https://pvlib-python.readthedocs.io/en/v${version}/whatsnew.html";
license = licenses.bsd3;
maintainers = with maintainers; [ jluttine ];
};