Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pysabnzbd / default.nix
blobe6116e6442d177ed19bdeeb12e70ace5282b70ae
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , aiohttp
5 }:
7 buildPythonPackage rec {
8   pname = "pysabnzbd";
9   version = "1.1.1";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "jeradM";
14     repo = "pysabnzbd";
15     rev = "8e6cd1869c8cc99a4560ea1b178f0a1efd89e460"; # tag is missing
16     hash = "sha256-Ubl+kdcjMm1A7pa3Q5G+fFBwPIxA375Ci04/vVyUl+A=";
17   };
19   propagatedBuildInputs = [
20     aiohttp
21   ];
23   # upstream has no tests
24   doCheck = false;
26   pythonImportsCheck = [ "pysabnzbd" ];
28   meta = {
29     description = "Python wrapper for SABnzbd API";
30     homepage = "https://github.com/jeradM/pysabnzbd";
31     license = lib.licenses.mit;
32     maintainers = with lib.maintainers; [ dotlambda ];
33   };