linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / sabyenc3 / default.nix
blobaab3201047d6959d79a1c3cf73cfc2650d688c7c
1 { lib, fetchPypi, python3Packages }:
3 python3Packages.buildPythonPackage rec {
4   pname = "sabyenc3";
5   version = "4.0.2";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "dfaa0bdd01752a9cfde0d349a8f4e178b04b1cf9c1bc018b287961192cd2bb90";
10   };
12   # tests are not included in pypi distribution
13   doCheck = false;
15   meta = {
16     description = "yEnc Decoding for Python 3";
17     homepage = "https://github.com/sabnzbd/sabyenc/";
18     license = lib.licenses.lgpl3;
19     maintainers = [ lib.maintainers.lovek323 ];
20   };