This commit is contained in:
mjallen18
2025-12-11 17:41:05 -06:00
parent 82ecfba7db
commit 31202f8b0e
17 changed files with 71 additions and 67 deletions

View File

@@ -1,5 +1,5 @@
{ python3Packages, fetchFromGitHub, ... }:
python3Packages.buildPythonPackage {
python3Packages.buildPythonPackage rec {
pname = "pipewire-python";
version = "0.2.3";
format = "pyproject";
@@ -7,8 +7,8 @@ python3Packages.buildPythonPackage {
src = fetchFromGitHub {
owner = "pablodz";
repo = "pipewire_python";
rev = "master";
sha256 = "sha256-EmwEZeKFFEqLkVnBKmB1HDVPk0xAqG6Ztv7+gpl0B1Y=";
rev = "v${version}";
sha256 = "sha256-6UIu7vke40q+n91gU8YxwMV/tWjLT6iDmHCMVqnXdMY=";
};
buildInputs = with python3Packages; [ flit-core ];

View File

@@ -8,7 +8,7 @@
python3Packages.buildPythonPackage rec {
pname = "python-roborock";
version = "3.10.10";
version = "3.12.2";
pyproject = true;
disabled = python3Packages.pythonOlder "3.11";
@@ -17,7 +17,7 @@ python3Packages.buildPythonPackage rec {
owner = "humbertogontijo";
repo = "python-roborock";
tag = "v${version}";
hash = "sha256-FBm/Gt45VRquZ4Y/0upyNjcJ/XJiYnFFCtoIa0Qhz4U=";
hash = "sha256-KpuEveA13e2QUgLF/r2iIpohZ2379qWoPxDS6WcKxpI=";
};
pythonRelaxDeps = [ "pycryptodome" ];