summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/aiosteamist/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/aiosteamist/default.nix')
-rw-r--r--pkgs/development/python-modules/aiosteamist/default.nix23
1 files changed, 10 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/aiosteamist/default.nix b/pkgs/development/python-modules/aiosteamist/default.nix
index 535594e3d28d..b6fc08e3c9d1 100644
--- a/pkgs/development/python-modules/aiosteamist/default.nix
+++ b/pkgs/development/python-modules/aiosteamist/default.nix
@@ -1,10 +1,11 @@
-{ lib
-, aiohttp
-, buildPythonPackage
-, fetchFromGitHub
-, poetry-core
-, pythonOlder
-, xmltodict
+{
+ lib,
+ aiohttp,
+ buildPythonPackage,
+ fetchFromGitHub,
+ poetry-core,
+ pythonOlder,
+ xmltodict,
}:
buildPythonPackage rec {
@@ -21,9 +22,7 @@ buildPythonPackage rec {
hash = "sha256-IKrAJ4QDcYJRO4hcomL9FRs8hJ3k7SgRgK4H1b8SxIM=";
};
- nativeBuildInputs = [
- poetry-core
- ];
+ nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
aiohttp
@@ -36,9 +35,7 @@ buildPythonPackage rec {
--replace 'xmltodict = "^0.12.0"' 'xmltodict = "*"'
'';
- pythonImportsCheck = [
- "aiosteamist"
- ];
+ pythonImportsCheck = [ "aiosteamist" ];
# Modules doesn't have test suite
doCheck = false;