ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / goodwe / default.nix
blobe10ae6927f6316ec4c94aed44058928d55287603
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytestCheckHook
5 , pythonOlder
6 , setuptools
7 }:
9 buildPythonPackage rec {
10   pname = "goodwe";
11   version = "0.2.20";
12   format = "pyproject";
14   disabled = pythonOlder "3.8";
16   src = fetchFromGitHub {
17     owner = "marcelblijleven";
18     repo = pname;
19     rev = "refs/tags/v${version}";
20     sha256 = "sha256-RDd0KR7NjBTlgeQ/E4mnLnB2n4NCPoAt2a62NGdzCZE=";
21   };
23   postPatch = ''
24     substituteInPlace setup.cfg \
25       --replace "'marcelblijleven@gmail.com" "marcelblijleven@gmail.com" \
26       --replace "version: file: VERSION" "version = ${version}"
27   '';
29   nativeBuildInputs = [
30     setuptools
31   ];
33   pythonImportsCheck = [
34     "goodwe"
35   ];
37   checkInputs = [
38     pytestCheckHook
39   ];
42   meta = with lib; {
43     description = "Python library for connecting to GoodWe inverter";
44     homepage = "https://github.com/marcelblijleven/goodwe";
45     license = licenses.mit;
46     maintainers = with maintainers; [ fab ];
47   };