python310Packages.python-youtube: 0.9.0 -> 0.9.1

This commit is contained in:
David Arnold 2023-07-20 15:55:15 -05:00
parent 5715a24aed
commit 1a06093410
No known key found for this signature in database
GPG key ID: 0318D822BAC965CC

View file

@ -11,19 +11,17 @@
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "python-youtube"; pname = "python-youtube";
version = "0.9.0"; version = "0.9.1";
format = "pyproject"; format = "pyproject";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "sns-sdks"; owner = "sns-sdks";
repo = "python-youtube"; repo = "python-youtube";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-uimipYgf8nfYd1J/K6CStbzIkQiRSosu7/yOfgXYCks="; hash = "sha256-PbPdvUv7I9NKW6w4OJbiUoRNVJ1SoXychSXBH/y5nzY=";
}; };
postPatch = '' postPatch = ''
substituteInPlace pyproject.toml \
--replace "poetry.masonry.api" "poetry.core.masonry.api"
substituteInPlace pytest.ini \ substituteInPlace pytest.ini \
--replace "--cov=pyyoutube" "" \ --replace "--cov=pyyoutube" "" \
--replace "--cov-report xml" "" --replace "--cov-report xml" ""
@ -47,24 +45,6 @@ buildPythonPackage rec {
responses responses
]; ];
disabledTests = [
# On both tests, upstream compares a string to an integer
/*
python3.10-python-youtube> > self.assertEqual(m.viewCount, "160361638")
python3.10-python-youtube> E AssertionError: 160361638 != '160361638'
python3.10-python-youtube> tests/models/test_channel.py:62: AssertionError
*/
"testChannelStatistics"
/*
python3.10-python-youtube> > self.assertEqual(m.viewCount, "8087")
python3.10-python-youtube> E AssertionError: 8087 != '8087'
python3.10-python-youtube> tests/models/test_videos.py:76: AssertionError
*/
"testVideoStatistics"
];
meta = with lib; { meta = with lib; {
description = "A simple Python wrapper around for YouTube Data API"; description = "A simple Python wrapper around for YouTube Data API";
homepage = "https://github.com/sns-sdks/python-youtube"; homepage = "https://github.com/sns-sdks/python-youtube";