Skip to content

Commit

Permalink
python3Packages.chime: init at 0-unstable-2023-03-06
Browse files Browse the repository at this point in the history
  • Loading branch information
poperigby committed Dec 23, 2024
1 parent bc26911 commit 25b7390
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pkgs/development/python-modules/chime/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
alsa-utils,
buildPythonPackage,
fetchFromGitHub,
lib,
poetry-core,
stdenv,
unstableGitUpdater,
}:

buildPythonPackage {
pname = "chime";
version = "0-unstable-2023-03-06";
pyproject = true;

src = fetchFromGitHub {
owner = "MaxHalford";
repo = "chime";
rev = "083654b8886463acaff64f72224081a10260373b";
hash = "sha256-t+ri/1JuczUFP7txRU8+5MaETMcsjLnuXbacJMzGf98=";
};

passthru.updateScript = unstableGitUpdater { };

build-system = [ poetry-core ];

propagatedBuildInputs = lib.optionals stdenv.isLinux [ alsa-utils ];

meta = {
description = "Python sound notifications made easy";
homepage = "https://github.com/MaxHalford/chime";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ PopeRigby ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2272,6 +2272,8 @@ self: super: with self; {

chex = callPackage ../development/python-modules/chex { };

chime = callPackage ../development/python-modules/chime { };

chirpstack-api = callPackage ../development/python-modules/chirpstack-api { };

chispa = callPackage ../development/python-modules/chispa { };
Expand Down

0 comments on commit 25b7390

Please sign in to comment.