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