tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.pytautulli: 21.10.1 -> 21.11.0
Fabian Affolter
4 years ago
ae5c365f
ede17adc
+5
-5
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
pytautulli
default.nix
+5
-5
pkgs/development/python-modules/pytautulli/default.nix
reviewed
···
1
1
{ lib
2
2
, aiohttp
3
3
, aresponses
4
4
-
, async-timeout
5
4
, buildPythonPackage
6
5
, fetchFromGitHub
7
6
, pytest-asyncio
···
10
11
11
12
buildPythonPackage rec {
12
13
pname = "pytautulli";
13
13
-
version = "21.10.1";
14
14
+
version = "21.11.0";
14
15
format = "setuptools";
15
16
16
17
disabled = pythonOlder "3.8";
···
19
20
owner = "ludeeus";
20
21
repo = pname;
21
22
rev = version;
22
22
-
sha256 = "sha256-ckDqKPseOrGyWGvcPyj99cvQS+w4AHUkO4FHOIo9MDM=";
23
23
+
sha256 = "sha256-zODU3aN+8Fdw/GQ/EfZhn6kOuLDARKgLULzRw2+b2BM=";
23
24
};
24
25
25
26
postPatch = ''
···
31
32
32
33
propagatedBuildInputs = [
33
34
aiohttp
34
34
-
async-timeout
35
35
];
36
36
37
37
checkInputs = [
···
39
41
pytestCheckHook
40
42
];
41
43
42
42
-
pythonImportsCheck = [ "pytautulli" ];
44
44
+
pythonImportsCheck = [
45
45
+
"pytautulli"
46
46
+
];
43
47
44
48
meta = with lib; {
45
49
description = "Python module to get information from Tautulli";