This commit is contained in:
mjallen18
2025-08-23 10:26:12 -05:00
parent a96b8ddf86
commit bc18b0775b
43 changed files with 796 additions and 177 deletions

View File

@@ -0,0 +1,21 @@
{
python3Packages,
fetchFromGitHub,
...
}:
python3Packages.buildPythonPackage rec {
pname = "magicattr";
version = "0.1.6";
format = "setuptools";
src = fetchFromGitHub {
owner = "frmdstryr";
repo = pname;
rev = "master";
sha256 = "sha256-FJtWU5AuunZbdlndGdfD1c9/0s7oRdoTi202pWjuAd8=";
};
buildInputs = with python3Packages; [ setuptools ];
doCheck = false;
}

View File

@@ -0,0 +1,21 @@
{ python3Packages, fetchFromGitHub, ... }:
python3Packages.buildPythonPackage {
pname = "pipewire-python";
version = "0.2.3";
format = "pyproject";
src = fetchFromGitHub {
owner = "pablodz";
repo = "pipewire_python";
rev = "master";
sha256 = "sha256-EmwEZeKFFEqLkVnBKmB1HDVPk0xAqG6Ztv7+gpl0B1Y=";
};
buildInputs = with python3Packages; [ flit-core ];
nativeBuildInputs = with python3Packages; [
build
wheel
];
doCheck = false;
}

View File

@@ -0,0 +1,16 @@
{ python3Packages, fetchFromGitHub, ... }:
python3Packages.buildPythonPackage rec {
pname = "pyoverseerr";
version = "0.1.40";
format = "setuptools";
src = fetchFromGitHub {
owner = "vaparr";
repo = pname;
rev = "master";
sha256 = "sha256-sWYe6EV/IO/tGGXcnKiebb47eidIj0xnM/aZUfdZXyY=";
};
buildInputs = with python3Packages; [ setuptools ];
doCheck = false; # no tests in the PyPI tarball
}

View File

@@ -0,0 +1,28 @@
{ python3Packages, fetchFromGitHub, ... }:
python3Packages.buildPythonPackage rec {
pname = "python-nanokvm";
version = "v0.0.3";
format = "pyproject";
src = fetchFromGitHub {
owner = "puddly";
repo = pname;
rev = version;
sha256 = "sha256-jBBd+O3S/4AlxAhrF9j9Bi5vMKZNk0M17ok9JzcI8F8=";
};
buildInputs = with python3Packages; [
setuptools
setuptools-git-versioning
];
nativeBuildInputs = with python3Packages; [
aiohttp
cryptography
yarl
pillow
pydantic
];
doCheck = false;
}

View File

@@ -0,0 +1,16 @@
{ python3Packages, fetchPypi, ... }:
python3Packages.buildPythonPackage rec {
pname = "steam";
version = "1.4.4";
pyproject = false;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-K1vWkRwNSnMS9EG40WK52NR8i+u478bIhnOTsDI/pS4=";
};
buildInputs = with python3Packages; [ setuptools ];
doCheck = false; # no tests in the PyPI tarball
}

View File

@@ -0,0 +1,26 @@
{ fetchFromGitHub, python3Packages, ... }:
python3Packages.buildPythonPackage rec {
pname = "wyzeapy";
version = "0.5.30";
format = "pyproject";
src = fetchFromGitHub {
owner = "SecKatie";
repo = "wyzeapy";
rev = version;
sha256 = "sha256-rEmWsCIBGNmDEecVT8O9O5/E0WVpTfA7amFI70DEmiI=";
};
buildInputs = with python3Packages; [
poetry-core
hatchling
];
nativeBuildInputs = with python3Packages; [
aiodns
aiohttp
pycryptodome
];
doCheck = false; # no tests in the PyPI tarball
}