merge
This commit is contained in:
21
packages/python/magicattr/default.nix
Normal file
21
packages/python/magicattr/default.nix
Normal 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;
|
||||
}
|
||||
21
packages/python/pipewire-python/default.nix
Normal file
21
packages/python/pipewire-python/default.nix
Normal 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;
|
||||
}
|
||||
16
packages/python/pyoverseerr/default.nix
Normal file
16
packages/python/pyoverseerr/default.nix
Normal 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
|
||||
}
|
||||
28
packages/python/python-nanokvm/default.nix
Normal file
28
packages/python/python-nanokvm/default.nix
Normal 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;
|
||||
}
|
||||
16
packages/python/python-steam/default.nix
Normal file
16
packages/python/python-steam/default.nix
Normal 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
|
||||
}
|
||||
26
packages/python/wyzeapy/default.nix
Normal file
26
packages/python/wyzeapy/default.nix
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user