10 buildPythonPackage rec {
11 pname = "socid-extractor";
13 format = "setuptools";
15 disabled = pythonOlder "3.8";
17 src = fetchFromGitHub {
21 hash = "sha256-tDKwYgW1vEyPzuouPGK9tdTf3vNr+UaosHtQe23srG0=";
24 propagatedBuildInputs = [
31 # https://github.com/soxoj/socid-extractor/pull/125
32 substituteInPlace requirements.txt \
33 --replace "beautifulsoup4~=4.10.0" "beautifulsoup4>=4.10.0"
36 # Test require network access
39 pythonImportsCheck = [
44 description = "Python module to extract details from personal pages";
45 homepage = "https://github.com/soxoj/socid-extractor";
46 license = with licenses; [ gpl3Only ];
47 maintainers = with maintainers; [ fab ];