Merge pull request #199236 from fabaff/pysolcast-bump

python310Packages.pysolcast: 1.0.7 -> 1.0.11
This commit is contained in:
Fabian Affolter 2022-11-03 09:27:41 +01:00 committed by GitHub
commit 3b47c8889b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,16 +12,16 @@
buildPythonPackage rec {
pname = "pysolcast";
version = "1.0.7";
version = "1.0.11";
format = "setuptools";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "mcaulifn";
repo = "solcast";
rev = "v${version}";
sha256 = "J4D7W89Qz1Nv4DeqOmHVAWfmThlY5puBjSClRkfwhVw=";
hash = "sha256-iK3WCpl7K/PUccNkOQK7q4k7JjwHAEydU47c8tb4wvc=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
@ -53,9 +53,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python library for interacting with the Solcast API";
homepage = "https://github.com/mcaulifn/solcast";
# No license statement present
# https://github.com/mcaulifn/solcast/issues/70
license = with licenses; [ unfree ];
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}