temp
This commit is contained in:
@@ -7,13 +7,13 @@
|
||||
buildHomeAssistantComponent rec {
|
||||
owner = "gcobb321";
|
||||
domain = "icloud3";
|
||||
version = "3.2.2.3";
|
||||
version = "v3.2.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = owner;
|
||||
repo = "icloud3";
|
||||
rev = "v.${version}";
|
||||
hash = "sha256-OjXioS73jE/U2YeKYf84QnStdQj3Seid4hJ2TH6z13M=";
|
||||
hash = "sha256-1yygw2k5r2cqh0df6njwjb5lp2nd9cgh684pkjqlzzsbx7jzc8a7";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
|
||||
17
packages/pipewire-python/default.nix
Normal file
17
packages/pipewire-python/default.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{ python3Packages, fetchFromGitHub, ... }:
|
||||
python3Packages.buildPythonPackage rec {
|
||||
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; # no tests in the PyPI tarball
|
||||
}
|
||||
Reference in New Issue
Block a user