27 lines
548 B
Nix
27 lines
548 B
Nix
{ fetchFromGitHub, python3Packages, lib, ... }:
|
|
python3Packages.buildPythonPackage rec {
|
|
pname = "wyzeapy";
|
|
version = "0.5.31";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SecKatie";
|
|
repo = "wyzeapy";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-KDCd1G5Tj0YWM2WA3DJK9rTf1rMzz4qBSUl8FOUbvdM=";
|
|
};
|
|
|
|
buildInputs = with python3Packages; [
|
|
poetry-core
|
|
hatchling
|
|
];
|
|
|
|
nativeBuildInputs = with python3Packages; [
|
|
aiodns
|
|
aiohttp
|
|
pycryptodome
|
|
];
|
|
|
|
doCheck = false; # no tests in the PyPI tarball
|
|
}
|