1{ lib, fetchPypi, python3Packages }: 2 3python3Packages.buildPythonPackage rec { 4 pname = "sabyenc3"; 5 version = "4.0.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "dfaa0bdd01752a9cfde0d349a8f4e178b04b1cf9c1bc018b287961192cd2bb90"; 10 }; 11 12 # tests are not included in pypi distribution 13 doCheck = false; 14 15 meta = { 16 description = "yEnc Decoding for Python 3"; 17 homepage = "https://github.com/sabnzbd/sabyenc/"; 18 license = lib.licenses.lgpl3; 19 maintainers = [ lib.maintainers.lovek323 ]; 20 }; 21 22}