mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 13:05:08 +00:00
python3Packages.aurorapy: init at 0.2.6
This commit is contained in:
parent
5c4a3c49e9
commit
277d6494b2
43
pkgs/development/python-modules/aurorapy/default.nix
Normal file
43
pkgs/development/python-modules/aurorapy/default.nix
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
{ 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -752,6 +752,8 @@ in {
|
|||||||
|
|
||||||
auroranoaa = callPackage ../development/python-modules/auroranoaa { };
|
auroranoaa = callPackage ../development/python-modules/auroranoaa { };
|
||||||
|
|
||||||
|
aurorapy = callPackage ../development/python-modules/aurorapy { };
|
||||||
|
|
||||||
auth0-python = callPackage ../development/python-modules/auth0-python { };
|
auth0-python = callPackage ../development/python-modules/auth0-python { };
|
||||||
|
|
||||||
authcaptureproxy = callPackage ../development/python-modules/authcaptureproxy { };
|
authcaptureproxy = callPackage ../development/python-modules/authcaptureproxy { };
|
||||||
|
Loading…
Reference in New Issue
Block a user