at master 631 B view raw
1{ 2 lib, 3 fetchPypi, 4 buildPythonPackage, 5 pythonOlder, 6}: 7 8buildPythonPackage rec { 9 pname = "sabyenc3"; 10 version = "5.4.4"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 hash = "sha256-89ZfKnC8sT7xvq4P9rs7aa2uGElwNfjNT/5OWvGqL0E="; 18 }; 19 20 # Tests are not included in pypi distribution 21 doCheck = false; 22 23 pythonImportsCheck = [ "sabyenc3" ]; 24 25 meta = with lib; { 26 description = "yEnc Decoding for Python 3"; 27 homepage = "https://github.com/sabnzbd/sabyenc/"; 28 license = licenses.lgpl3Plus; 29 maintainers = with maintainers; [ lovek323 ]; 30 }; 31}