Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / sabyenc / default.nix
blob8ba0b1df0db9dec3cdaf34f3f37088a2a8571e89
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "sabyenc";
5   version = "3.3.6";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "1qbymi1626mmcxnsqdwnz2krxg7jvl4qbh8nwjj54z2p681wvjm4";
11   };
13   # tests are not included in pypi distribution
14   doCheck = false;
16   meta = {
17     description = "Python yEnc package optimized for use within SABnzbd";
18     homepage = "https://github.com/sabnzbd/sabyenc/";
19     license = lib.licenses.lgpl3;
20     maintainers = [ lib.maintainers.georgewhewell ];
21   };