blob: 159fdb802914c78353a020eb60cb16f6ba73c1e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
requests,
}:
buildPythonPackage rec {
pname = "pynetgear";
version = "0.10.10";
format = "setuptools";
src = fetchFromGitHub {
owner = "MatMaul";
repo = "pynetgear";
tag = version;
hash = "sha256-5Lj2cK/SOGgaPu8dI9X3Leg4dPAY7tdIHCzFnNaube8=";
};
propagatedBuildInputs = [ requests ];
pythonImportsCheck = [ "pynetgear" ];
# Tests don't pass
# https://github.com/MatMaul/pynetgear/issues/109
doCheck = false;
meta = {
description = "Module for interacting with Netgear wireless routers";
homepage = "https://github.com/MatMaul/pynetgear";
changelog = "https://github.com/MatMaul/pynetgear/releases/tag/${version}";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|