Files
nix-config/packages/wyzeapy/default.nix
mjallen18 3d213c8769 nixfmt
2025-07-24 11:06:08 -05:00

24 lines
517 B
Nix

{ fetchFromGitHub, python3Packages, ... }:
python3Packages.buildPythonPackage rec {
pname = "wyzeapy";
version = "0.5.27";
format = "pyproject";
src = fetchFromGitHub {
owner = "SecKatie";
repo = "wyzeapy";
rev = version;
sha256 = "sha256-IfhRsVWj/bcKOtpCdmpgrz3L8iY73e+weHlOo5rfKHw=";
};
buildInputs = with python3Packages; [ poetry-core ];
nativeBuildInputs = with python3Packages; [
aiodns
aiohttp
pycryptodome
];
doCheck = false; # no tests in the PyPI tarball
}