Merge pull request #204226 from r-ryantm/auto-update/python310Packages.aocd

python310Packages.aocd: 1.2.3 -> 1.3.1
This commit is contained in:
Fabian Affolter 2022-12-04 14:25:49 +01:00 committed by GitHub
commit 56310e1d12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,18 +1,35 @@
{ lib, stdenv, buildPythonPackage, fetchFromGitHub, requests { lib
, pytestCheckHook, tzlocal, pytest-mock, pytest-freezegun, pytest-raisin , stdenv
, pytest-socket, requests-mock, pebble, python-dateutil, termcolor , buildPythonPackage
, beautifulsoup4, setuptools , fetchFromGitHub
, requests
, pytestCheckHook
, tzlocal
, pytest-mock
, pytest-freezegun
, pytest-raisin
, pytest-socket
, requests-mock
, pebble
, python-dateutil
, termcolor
, beautifulsoup4
, setuptools
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "aocd"; pname = "aocd";
version = "1.2.3"; version = "1.3.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "wimglenn"; owner = "wimglenn";
repo = "advent-of-code-data"; repo = "advent-of-code-data";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
sha256 = "sha256-//f/VWrTKukpNea8xprGQ7jobw10g5MQnnuM6/bAcGw="; hash = "sha256-xns//QAAYw9+Md0THUxFUxnqCDoS1qGslX6CFbIALng=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -46,11 +63,14 @@ buildPythonPackage rec {
requests-mock requests-mock
]; ];
pythonImportsCheck = [ "aocd" ]; pythonImportsCheck = [
"aocd"
];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/wimglenn/advent-of-code-data";
description = "Get your Advent of Code data with a single import statement"; description = "Get your Advent of Code data with a single import statement";
homepage = "https://github.com/wimglenn/advent-of-code-data";
changelog = "https://github.com/wimglenn/advent-of-code-data/releases/tag/v${version}";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ aadibajpai ]; maintainers = with maintainers; [ aadibajpai ];
platforms = platforms.unix; platforms = platforms.unix;