Unverified Commit 3b47c888 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #199236 from fabaff/pysolcast-bump

python310Packages.pysolcast: 1.0.7 -> 1.0.11
parents 04abe7d8 50cc83b0
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -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 ];
  };
}