mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 11:13:30 +00:00
python312Packages.opower: use nixfmt
This commit is contained in:
parent
9ca9c1b511
commit
23cae1b1cc
@ -1,13 +1,14 @@
|
||||
{ lib
|
||||
, aiohttp
|
||||
, arrow
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pyotp
|
||||
, pytestCheckHook
|
||||
, python-dotenv
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
{
|
||||
lib,
|
||||
aiohttp,
|
||||
arrow,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
pyotp,
|
||||
pytestCheckHook,
|
||||
python-dotenv,
|
||||
pythonOlder,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -24,9 +25,7 @@ buildPythonPackage rec {
|
||||
hash = "sha256-qJMQoc0Bpo1X2jQ23XlmCLE7h8F5IsniQ+Hx9iJ0h6A=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
];
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
aiohttp
|
||||
@ -35,13 +34,9 @@ buildPythonPackage rec {
|
||||
python-dotenv
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"opower"
|
||||
];
|
||||
pythonImportsCheck = [ "opower" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Module for getting historical and forecasted usage/cost from utilities that use opower.com";
|
||||
|
Loading…
Reference in New Issue
Block a user