From b4c48da869f17ea639613030ae92979ee69b7afa Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Jul 2023 12:11:19 +0200 Subject: [PATCH] python311Packages.socid-extractor: 0.0.23 -> 0.0.24 Diff: https://github.com/soxoj/socid-extractor/compare/refs/tags/v0.0.23...v0.0.24 Changelog: https://github.com/soxoj/socid-extractor/blob/v0.0.24/CHANGELOG.md --- .../python-modules/socid-extractor/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/socid-extractor/default.nix b/pkgs/development/python-modules/socid-extractor/default.nix index de552ca673c9..19c41c35ac11 100644 --- a/pkgs/development/python-modules/socid-extractor/default.nix +++ b/pkgs/development/python-modules/socid-extractor/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "socid-extractor"; - version = "0.0.23"; + version = "0.0.24"; format = "setuptools"; disabled = pythonOlder "3.8"; @@ -17,8 +17,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "soxoj"; repo = pname; - rev = "v${version}"; - hash = "sha256-tDKwYgW1vEyPzuouPGK9tdTf3vNr+UaosHtQe23srG0="; + rev = "refs/tags/v${version}"; + hash = "sha256-INewgfm+E2t4QfE+SRAm5a74AKsifNtnwC0WPBqPUns="; }; propagatedBuildInputs = [ @@ -28,9 +28,9 @@ buildPythonPackage rec { ]; postPatch = '' - # https://github.com/soxoj/socid-extractor/pull/125 + # https://github.com/soxoj/socid-extractor/pull/150 substituteInPlace requirements.txt \ - --replace "beautifulsoup4~=4.10.0" "beautifulsoup4>=4.10.0" + --replace "beautifulsoup4~=4.11.1" "beautifulsoup4>=4.10.0" ''; # Test require network access @@ -43,6 +43,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python module to extract details from personal pages"; homepage = "https://github.com/soxoj/socid-extractor"; + changelog = "https://github.com/soxoj/socid-extractor/blob/v${version}/CHANGELOG.md"; license = with licenses; [ gpl3Only ]; maintainers = with maintainers; [ fab ]; };