81047829ea
GitOrigin-RevId: 48d63e924a2666baf37f4f14a18f19347fbd54a2
43 lines
813 B
Nix
43 lines
813 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitLab
|
|
, future
|
|
, pyserial
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aurorapy";
|
|
version = "0.2.6";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "energievalsabbia";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-DMlzzLe94dbeHjESmLc045v7vQ//IEsngAv7TeVznHE=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
future
|
|
pyserial
|
|
];
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"aurorapy"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Implementation of the communication protocol for Power-One Aurora inverters";
|
|
homepage = "https://gitlab.com/energievalsabbia/aurorapy";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|