Merge pull request #95945 from lovek323/sabnzbd-upgrade

sabnzbd: 2.3.9 -> 3.0.1
This commit is contained in:
Jason O'Conal
2020-08-23 17:36:32 +09:30
committed by GitHub
3 changed files with 44 additions and 4 deletions

View File

@@ -0,0 +1,22 @@
{ lib, fetchPypi, python3Packages }:
python3Packages.buildPythonPackage rec {
pname = "sabyenc3";
version = "4.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "0zfj1k4zij8ph8jwkq4d6i6axym8cil16yijxshqla5163d1031z";
};
# tests are not included in pypi distribution
doCheck = false;
meta = {
description = "yEnc Decoding for Python 3";
homepage = "https://github.com/sabnzbd/sabyenc/";
license = lib.licenses.lgpl3;
maintainers = [ lib.maintainers.lovek323 ];
};
}