python310Packages.whispers: build as package

main
Fabian Affolter 2 years ago
parent cbe587c735
commit 05cfbf0a55
  1. 23
      pkgs/development/python-modules/whispers/default.nix
  2. 2
      pkgs/top-level/all-packages.nix
  3. 2
      pkgs/top-level/python-packages.nix

@ -1,20 +1,33 @@
{ lib
, astroid
, beautifulsoup4
, buildPythonPackage
, fetchFromGitHub
, python3
, jproperties
, luhn
, lxml
, pytest-mock
, pytestCheckHook
, python-Levenshtein
, pythonOlder
, pyyaml
}:
python3.pkgs.buildPythonApplication rec {
buildPythonPackage rec {
pname = "whispers";
version = "1.5.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "Skyscanner";
repo = pname;
rev = version;
sha256 = "sha256-jruUGyoZCyMu015QKtlvfx5WRMfxo/eYUue9wUIWb6o=";
hash = "sha256-jruUGyoZCyMu015QKtlvfx5WRMfxo/eYUue9wUIWb6o=";
};
propagatedBuildInputs = with python3.pkgs; [
propagatedBuildInputs = [
astroid
beautifulsoup4
jproperties
@ -24,7 +37,7 @@ python3.pkgs.buildPythonApplication rec {
pyyaml
];
checkInputs = with python3.pkgs; [
checkInputs = [
pytest-mock
pytestCheckHook
];

@ -30386,7 +30386,7 @@ with pkgs;
wafw00f = callPackage ../tools/security/wafw00f { };
whispers = callPackage ../tools/security/whispers { };
whispers = with python3Packages; toPythonApplication whispers;
waon = callPackage ../applications/audio/waon { };

@ -10897,6 +10897,8 @@ in {
whisper = callPackage ../development/python-modules/whisper { };
whispers = callPackage ../development/python-modules/whispers { };
whitenoise = callPackage ../development/python-modules/whitenoise { };
whodap = callPackage ../development/python-modules/whodap { };

Loading…
Cancel
Save