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