pythonPackages.sabyenc: init at 2.3.3

This commit is contained in:
georgewhewell 2018-07-27 19:01:59 +01:00
parent 5ea799defc
commit 660721140c
No known key found for this signature in database
GPG Key ID: CC545269736CDD24
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "sabyenc";
version = "3.3.5";
src = fetchPypi {
inherit pname version;
sha256 = "0fpvd5mckf1kbn0bhc5ybm08y41ps7sc5f9khz08qyjbikbcww85";
};
# tests are not included in pypi distribution
doCheck = false;
meta = {
description = "Python yEnc package optimized for use within SABnzbd";
homepage = "https://github.com/sabnzbd/sabyenc/";
license = lib.licenses.lgpl3;
maintainers = [ lib.maintainers.georgewhewell ];
};
}

View File

@ -470,6 +470,8 @@ in {
rx = callPackage ../development/python-modules/rx { };
sabyenc = callPackage ../development/python-modules/sabyenc { };
salmon-mail = callPackage ../development/python-modules/salmon-mail { };
seekpath = callPackage ../development/python-modules/seekpath { };