first commit
This commit is contained in:
commit
8e878042dd
16 changed files with 1204 additions and 0 deletions
31
packages/dbus-mediaplayer.nix
Normal file
31
packages/dbus-mediaplayer.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{pkgs ? import <nixpkgs> {}}:
|
||||
with pkgs.python3Packages;
|
||||
buildPythonPackage rec {
|
||||
pname = "dbus-mediaplayer";
|
||||
version = "2025.6.0";
|
||||
pyproject = true;
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "dbus_mediaplayer";
|
||||
version = version;
|
||||
sha256 = "sha256-5qEBwEme1T6ntNUDeJ1HEBwvqUHaFAzhQwo72egK78Q=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace pyproject.toml \
|
||||
--replace-fail "setuptools~=69.2.0" "setuptools" \
|
||||
--replace-fail "wheel~=0.43.0" "wheel"
|
||||
'';
|
||||
|
||||
build-system = [setuptools];
|
||||
|
||||
dependencies = [
|
||||
# Build system
|
||||
setuptools
|
||||
wheel
|
||||
|
||||
# dependencies
|
||||
jeepney
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue