mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #120262 from fabaff/openerz-api
python3Packages.openerz-api: init at 0.1.0
This commit is contained in:
commit
e097a355c6
4 changed files with 43 additions and 1 deletions
39
pkgs/development/python-modules/openerz-api/default.nix
Normal file
39
pkgs/development/python-modules/openerz-api/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, requests
|
||||
, testfixtures
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "openerz-api";
|
||||
version = "0.1.0";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "misialq";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "10kxsmaz2rn26jijaxmdmhx8vjdz8hrhlrvd39gc8yvqbjwhi3nw";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
testfixtures
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "openerz_api" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python module to interact with the OpenERZ API";
|
||||
homepage = "https://github.com/misialq/openerz-api";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -590,7 +590,7 @@
|
|||
"openalpr_cloud" = ps: with ps; [ ];
|
||||
"openalpr_local" = ps: with ps; [ ];
|
||||
"opencv" = ps: with ps; [ numpy ]; # missing inputs: opencv-python-headless
|
||||
"openerz" = ps: with ps; [ ]; # missing inputs: openerz-api
|
||||
"openerz" = ps: with ps; [ openerz-api ];
|
||||
"openevse" = ps: with ps; [ ]; # missing inputs: openevsewifi
|
||||
"openexchangerates" = ps: with ps; [ ];
|
||||
"opengarage" = ps: with ps; [ ]; # missing inputs: open-garage
|
||||
|
|
|
@ -324,6 +324,7 @@ in with py.pkgs; buildPythonApplication rec {
|
|||
"number"
|
||||
"omnilogic"
|
||||
"ondilo_ico"
|
||||
"openerz"
|
||||
"ozw"
|
||||
"panel_custom"
|
||||
"panel_iframe"
|
||||
|
|
|
@ -4906,6 +4906,8 @@ in {
|
|||
pythonPackages = self;
|
||||
}));
|
||||
|
||||
openerz-api = callPackage ../development/python-modules/openerz-api { };
|
||||
|
||||
openhomedevice = callPackage ../development/python-modules/openhomedevice { };
|
||||
|
||||
openidc-client = callPackage ../development/python-modules/openidc-client { };
|
||||
|
|
Loading…
Reference in a new issue