diff --git a/configuration.nix b/configuration.nix index 3b1645f..add2a90 100644 --- a/configuration.nix +++ b/configuration.nix @@ -283,7 +283,6 @@ symbola flake8 # wraper for pyflakes, pycodestyle and mccabe isort # sort Python imports nose # testing and running python scripts - pipx # install python packages in a virtual environment pyflakes # checks source code for errors pytest # framework for writing tests speedtest-cli # check internet speed from the comand line @@ -299,6 +298,30 @@ symbola propagatedBuildInputs = [ pyyaml types-pyyaml ]; }) + (buildPythonApplication rec { + pname = "classifier"; + version = "2.0"; + src = fetchPypi { + inherit pname version; + sha256 = "sha256-yHtc0qNZbKIkhhxrh0Zh5KWWsC/aU51WX1oEPVN9nOg="; + }; + doCheck = false; + buildInputs = [ setuptools ]; + propagatedBuildInputs = + [ arrow ]; + }) + (buildPythonApplication rec { + pname = "ffpb"; + version = "0.4.1"; + src = fetchPypi { + inherit pname version; + sha256 = "sha256-7eVqbLpMHS1sBw2vYS4cTtyVdnnknGtEI8190VlXflk="; + }; + doCheck = false; + buildInputs = [ setuptools ]; + propagatedBuildInputs = + [ tqdm ]; + }) ]) ++ (with pkgs.bat-extras; [ batman # man pages diff --git a/configuration.org b/configuration.org index 35ae0b1..2e5fccd 100755 --- a/configuration.org +++ b/configuration.org @@ -7,7 +7,6 @@ - [ ] System configurations [0/8] - [ ] fail2ban - [ ] Bluetooth multiple devices + pass-through - - [ ] Firewall ports - [ ] Topgrade (perhaps unnecessary) - [ ] dotfiles [0/4] - [ ] migrate config to home-manager @@ -469,7 +468,6 @@ symbola flake8 # wraper for pyflakes, pycodestyle and mccabe isort # sort Python imports nose # testing and running python scripts - pipx # install python packages in a virtual environment pyflakes # checks source code for errors pytest # framework for writing tests speedtest-cli # check internet speed from the comand line @@ -485,6 +483,30 @@ symbola propagatedBuildInputs = [ pyyaml types-pyyaml ]; }) + (buildPythonApplication rec { + pname = "classifier"; + version = "2.0"; + src = fetchPypi { + inherit pname version; + sha256 = "sha256-yHtc0qNZbKIkhhxrh0Zh5KWWsC/aU51WX1oEPVN9nOg="; + }; + doCheck = false; + buildInputs = [ setuptools ]; + propagatedBuildInputs = + [ arrow ]; + }) + (buildPythonApplication rec { + pname = "ffpb"; + version = "0.4.1"; + src = fetchPypi { + inherit pname version; + sha256 = "sha256-7eVqbLpMHS1sBw2vYS4cTtyVdnnknGtEI8190VlXflk="; + }; + doCheck = false; + buildInputs = [ setuptools ]; + propagatedBuildInputs = + [ tqdm ]; + }) #+end_src ** BAT-EXTRAS