python312Packages.peco: format with nixfmt
This commit is contained in:
parent
ad8572d0d9
commit
312c697e2b
1 changed files with 10 additions and 13 deletions
|
@ -1,10 +1,11 @@
|
||||||
{ lib
|
{
|
||||||
, aiohttp
|
lib,
|
||||||
, buildPythonPackage
|
aiohttp,
|
||||||
, fetchPypi
|
buildPythonPackage,
|
||||||
, pydantic
|
fetchPypi,
|
||||||
, pythonOlder
|
pydantic,
|
||||||
, setuptools
|
pythonOlder,
|
||||||
|
setuptools,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -19,9 +20,7 @@ buildPythonPackage rec {
|
||||||
hash = "sha256-a3MPqtbDftbLGtpJ66CFVC5wJFa9L3dqOKPfBZCaHpM=";
|
hash = "sha256-a3MPqtbDftbLGtpJ66CFVC5wJFa9L3dqOKPfBZCaHpM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [
|
build-system = [ setuptools ];
|
||||||
setuptools
|
|
||||||
];
|
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
aiohttp
|
aiohttp
|
||||||
|
@ -31,9 +30,7 @@ buildPythonPackage rec {
|
||||||
# Module has no tests
|
# Module has no tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
pythonImportsCheck = [
|
pythonImportsCheck = [ "peco" ];
|
||||||
"peco"
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Library for interacting with the PECO outage map";
|
description = "Library for interacting with the PECO outage map";
|
||||||
|
|
Loading…
Reference in a new issue