python312Packages.socid-extractor: 0.0.26 -> 0.0.27 (#365289)

authored by Robert Schütz and committed by GitHub 885986d3 2ccc78c5

+12 -15
+12 -15
pkgs/development/python-modules/socid-extractor/default.nix
··· 5 fetchFromGitHub, 6 python-dateutil, 7 pythonOlder, 8 requests, 9 }: 10 11 buildPythonPackage rec { 12 pname = "socid-extractor"; 13 - version = "0.0.26"; 14 - format = "setuptools"; 15 16 - disabled = pythonOlder "3.8"; 17 18 src = fetchFromGitHub { 19 owner = "soxoj"; 20 - repo = pname; 21 - rev = "refs/tags/v${version}"; 22 - hash = "sha256-3ht/wlxB40k4n0DTBGAvAl7yPiUIZqAe+ECbtkyMTzk="; 23 }; 24 25 - propagatedBuildInputs = [ 26 beautifulsoup4 27 python-dateutil 28 requests 29 ]; 30 31 - postPatch = '' 32 - # https://github.com/soxoj/socid-extractor/pull/150 33 - substituteInPlace requirements.txt \ 34 - --replace "beautifulsoup4~=4.11.1" "beautifulsoup4>=4.10.0" 35 - ''; 36 - 37 # Test require network access 38 doCheck = false; 39 ··· 41 42 meta = with lib; { 43 description = "Python module to extract details from personal pages"; 44 - mainProgram = "socid_extractor"; 45 homepage = "https://github.com/soxoj/socid-extractor"; 46 changelog = "https://github.com/soxoj/socid-extractor/blob/v${version}/CHANGELOG.md"; 47 - license = with licenses; [ gpl3Only ]; 48 maintainers = with maintainers; [ fab ]; 49 }; 50 }
··· 5 fetchFromGitHub, 6 python-dateutil, 7 pythonOlder, 8 + setuptools, 9 requests, 10 }: 11 12 buildPythonPackage rec { 13 pname = "socid-extractor"; 14 + version = "0.0.27"; 15 + pyproject = true; 16 17 + disabled = pythonOlder "3.10"; 18 19 src = fetchFromGitHub { 20 owner = "soxoj"; 21 + repo = "socid-extractor"; 22 + tag = "v${version}"; 23 + hash = "sha256-oiXIxNvedEk+EufYzxhvRr8m+kuQRs0J62Yel5JLenQ="; 24 }; 25 26 + build-system = [ setuptools ]; 27 + 28 + dependencies = [ 29 beautifulsoup4 30 python-dateutil 31 requests 32 ]; 33 34 # Test require network access 35 doCheck = false; 36 ··· 38 39 meta = with lib; { 40 description = "Python module to extract details from personal pages"; 41 homepage = "https://github.com/soxoj/socid-extractor"; 42 changelog = "https://github.com/soxoj/socid-extractor/blob/v${version}/CHANGELOG.md"; 43 + license = licenses.gpl3Only; 44 maintainers = with maintainers; [ fab ]; 45 + mainProgram = "socid_extractor"; 46 }; 47 }