-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #93817 from albakham/pkg/sublime-music
- Loading branch information
Showing
5 changed files
with
125 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{ lib, python3Packages, gobject-introspection, gtk3, pango, wrapGAppsHook | ||
|
||
, chromecastSupport ? false | ||
, serverSupport ? false | ||
, keyringSupport ? true | ||
, notifySupport ? true, libnotify | ||
, networkSupport ? true, networkmanager | ||
}: | ||
|
||
python3Packages.buildPythonApplication rec { | ||
pname = "sublime-music"; | ||
version = "0.11.0"; | ||
|
||
src = python3Packages.fetchPypi { | ||
inherit pname version; | ||
sha256 = "1rnjc8pjfaq67mq10gy939g77azc80lxf77s9nsaxds4q5j1yrl2"; | ||
}; | ||
|
||
nativeBuildInputs = [ | ||
gobject-introspection | ||
python3Packages.setuptools | ||
wrapGAppsHook | ||
]; | ||
|
||
buildInputs = [ | ||
gtk3 | ||
pango | ||
] | ||
++ lib.optional notifySupport libnotify | ||
++ lib.optional networkSupport networkmanager | ||
; | ||
|
||
propagatedBuildInputs = with python3Packages; [ | ||
dataclasses-json | ||
deepdiff | ||
fuzzywuzzy | ||
mpv | ||
peewee | ||
pygobject3 | ||
python-Levenshtein | ||
python-dateutil | ||
requests | ||
semver | ||
] | ||
++ lib.optional chromecastSupport PyChromecast | ||
++ lib.optional keyringSupport keyring | ||
++ lib.optional serverSupport bottle | ||
; | ||
|
||
# hook for gobject-introspection doesn't like strictDeps | ||
# https://github.com/NixOS/nixpkgs/issues/56943 | ||
strictDeps = false; | ||
|
||
meta = with lib; { | ||
description = "GTK3 Subsonic/Airsonic client"; | ||
homepage = "https://sublimemusic.app/"; | ||
license = licenses.gpl3Plus; | ||
maintainers = with maintainers; [ albakham ]; | ||
}; | ||
} |
30 changes: 30 additions & 0 deletions
30
pkgs/development/python-modules/dataclasses-json/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ lib | ||
, buildPythonPackage | ||
, fetchPypi | ||
, stringcase | ||
, typing-inspect | ||
, marshmallow-enum | ||
}: | ||
|
||
buildPythonPackage rec { | ||
pname = "dataclasses-json"; | ||
version = "0.5.1"; | ||
|
||
src = fetchPypi { | ||
inherit pname version; | ||
sha256 = "0nkgp4pd7j7ydrciiix4x0w56l5w6qvj2vgxpwj42h4f2wdv2f3f"; | ||
}; | ||
|
||
propagatedBuildInputs = [ | ||
stringcase | ||
typing-inspect | ||
marshmallow-enum | ||
]; | ||
|
||
meta = with lib; { | ||
description = "Simple API for encoding and decoding dataclasses to and from JSON"; | ||
homepage = "https://github.com/lidatong/dataclasses-json"; | ||
license = licenses.mit; | ||
maintainers = with maintainers; [ albakham ]; | ||
}; | ||
} |
29 changes: 29 additions & 0 deletions
29
pkgs/development/python-modules/typing-inspect/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ lib | ||
, buildPythonPackage | ||
, fetchPypi | ||
, typing-extensions | ||
, mypy-extensions | ||
}: | ||
|
||
buildPythonPackage rec { | ||
pname = "typing-inspect"; | ||
version = "0.6.0"; | ||
|
||
src = fetchPypi { | ||
inherit version; | ||
pname = "typing_inspect"; | ||
sha256 = "1dzs9a1pr23dhbvmnvms2jv7l7jk26023g5ysf0zvnq8b791s6wg"; | ||
}; | ||
|
||
propagatedBuildInputs = [ | ||
typing-extensions | ||
mypy-extensions | ||
]; | ||
|
||
meta = with lib; { | ||
description = "Runtime inspection utilities for Python typing module"; | ||
homepage = "https://github.com/ilevkivskyi/typing_inspect"; | ||
license = licenses.mit; | ||
maintainers = with maintainers; [ albakham ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters