mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
97f3269ddb
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-sabyenc/versions
23 lines
533 B
Nix
23 lines
533 B
Nix
{ lib, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sabyenc";
|
|
version = "3.3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1qbymi1626mmcxnsqdwnz2krxg7jvl4qbh8nwjj54z2p681wvjm4";
|
|
};
|
|
|
|
# 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 ];
|
|
};
|
|
|
|
}
|