ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pysabnzbd / default.nix
blobe77b8cd6818898bc159e41558caeae082af5b217
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , aiohttp
5 }:
7 buildPythonPackage rec {
8   pname = "pysabnzbd";
9   version = "1.1.1";
11   src = fetchFromGitHub {
12     owner = "jeradM";
13     repo = "pysabnzbd";
14     rev = "8e6cd1869c8cc99a4560ea1b178f0a1efd89e460"; # tag is missing
15     hash = "sha256-Ubl+kdcjMm1A7pa3Q5G+fFBwPIxA375Ci04/vVyUl+A=";
16   };
18   propagatedBuildInputs = [
19     aiohttp
20   ];
22   # upstream has no tests
23   doCheck = false;
25   pythonImportsCheck = [ "pysabnzbd" ];
27   meta = {
28     description = "Python wrapper for SABnzbd API";
29     homepage = "https://github.com/jeradM/pysabnzbd";
30     license = lib.licenses.mit;
31     maintainers = with lib.maintainers; [ dotlambda ];
32   };