diff --git a/shell.nix b/shell.nix index 8575edc..69d363d 100644 --- a/shell.nix +++ b/shell.nix @@ -1,11 +1,11 @@ -with import {}; +with import { }; let python-qbittorrent = pkgs.python312Packages.buildPythonPackage rec { name = "python-qbittorrent-${version}"; version = "0.4.3"; - src = pkgs.fetchurl{ + src = pkgs.fetchurl { url = "https://files.pythonhosted.org/packages/86/25/a5ad35ad229c8016a8c98327495e649cb795be2fda63f8cace6c9a739af7/python-qbittorrent-${version}.tar.gz"; sha256 = "4e22cf89890628b054a60aa4bd1161a68c2b0fad48ef0886fa4d325e69d3828a"; }; @@ -23,7 +23,8 @@ let ]; }; -in mkShell { +in +mkShell { buildInputs = with pkgs; [ python312Packages.beautifulsoup4 python312Packages.black @@ -37,4 +38,3 @@ in mkShell { python-qbittorrent ]; } -