Merge pull request #296727 from dotlambda/recurring-ical-events-2.1.3

python311Packages.recurring-ical-events: 2.1.2 -> 2.1.3
This commit is contained in:
Nick Cao 2024-03-18 13:14:48 -07:00 committed by GitHub
commit 6389292c90
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 8 deletions

View File

@ -15,7 +15,7 @@
buildPythonPackage rec {
pname = "recurring-ical-events";
version = "2.1.2";
version = "2.1.3";
disabled = pythonOlder "3.7";
@ -25,7 +25,7 @@ buildPythonPackage rec {
owner = "niccokunzmann";
repo = "python-recurring-ical-events";
rev = "v${version}";
hash = "sha256-6qFUw5xfZvDuM/UBEGtoiHON15/6oq1S8H0Z1qk3k8s=";
hash = "sha256-K2pflwHpzuYDMNUB7YQu6NX21O0aOwRChBgjdiwFQ+Y=";
};
nativeBuildInputs = [

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, icalendar
, pytz
, pytestCheckHook
@ -10,17 +11,20 @@
buildPythonPackage rec {
pname = "x-wr-timezone";
version = "0.0.6";
format = "setuptools";
version = "0.0.7";
pyproject = true;
src = fetchFromGitHub {
owner = "niccokunzmann";
repo = "x-wr-timezone";
rev = "v${version}";
hash = "sha256-9B1gXabpZsJSHYUHLu6bBGidO3C5m/I0oOc5U/mbX0I=";
hash = "sha256-itqsVYYUcpbKTh0BM6IHk6F9xhB+pAQnnJsnZAVpNL4=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
icalendar
pytz
@ -36,8 +40,10 @@ buildPythonPackage rec {
export PATH=$out/bin:$PATH
'';
# https://github.com/niccokunzmann/x-wr-timezone/issues/8
doCheck = false;
disabledTests = [
"test_input_to_output"
"test_output_stays_the_same"
];
pythonImportsCheck = [ "x_wr_timezone" ];