Merge pull request #305419 from r-ryantm/auto-update/python311Packages.pysolcast

python311Packages.pysolcast: 2.0.1 -> 2.0.2
This commit is contained in:
Fabian Affolter 2024-04-20 12:02:53 +02:00 committed by GitHub
commit a5e9be4529
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,20 +1,21 @@
{ lib {
, anyconfig lib,
, buildPythonPackage anyconfig,
, fetchFromGitHub buildPythonPackage,
, isodate fetchFromGitHub,
, pytestCheckHook isodate,
, pythonOlder pytestCheckHook,
, pyyaml pythonOlder,
, requests pyyaml,
, responses requests,
, poetry-core responses,
, pythonRelaxDepsHook poetry-core,
pythonRelaxDepsHook,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pysolcast"; pname = "pysolcast";
version = "2.0.1"; version = "2.0.2";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.9"; disabled = pythonOlder "3.9";
@ -23,19 +24,16 @@ buildPythonPackage rec {
owner = "mcaulifn"; owner = "mcaulifn";
repo = "solcast"; repo = "solcast";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-JzGrE6zKj16Uzm3EC8ysMbgP5ouA00Gact7NYXbEkXI="; hash = "sha256-DXJkbAlkxBjUEbziFNdr8SilB2GRUoAwvrr0HY56Deg=";
}; };
pythonRelaxDeps = [ pythonRelaxDeps = [ "responses" ];
"responses"
];
nativeBuildInputs = [ build-system = [ poetry-core ];
poetry-core
pythonRelaxDepsHook
];
propagatedBuildInputs = [ nativeBuildInputs = [ pythonRelaxDepsHook ];
dependencies = [
anyconfig anyconfig
isodate isodate
pyyaml pyyaml
@ -47,9 +45,7 @@ buildPythonPackage rec {
responses responses
]; ];
pythonImportsCheck = [ pythonImportsCheck = [ "pysolcast" ];
"pysolcast"
];
meta = with lib; { meta = with lib; {
description = "Python library for interacting with the Solcast API"; description = "Python library for interacting with the Solcast API";