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
1 changed files with 21 additions and 25 deletions

View File

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