forked from pub-solar/os
chore: python3{9,10}Packages -> python3Packages
This commit is contained in:
parent
4fdebfa058
commit
fe4550bfc7
|
@ -34,7 +34,7 @@ in {
|
|||
nodePackages.vue-language-server
|
||||
nodePackages.vscode-langservers-extracted
|
||||
nodePackages.yaml-language-server
|
||||
python39Packages.python-lsp-server
|
||||
python3Packages.python-lsp-server
|
||||
python3Full
|
||||
solargraph
|
||||
rnix-lsp
|
||||
|
|
|
@ -40,7 +40,7 @@ in {
|
|||
qemu
|
||||
vagrant
|
||||
virt-manager
|
||||
python39Packages.libvirt
|
||||
python3Packages.libvirt
|
||||
gvfs
|
||||
edk2
|
||||
OVMF
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
final: prev:
|
||||
with prev.python310Packages; {
|
||||
with prev.python3Packages; {
|
||||
python-wiki-fetch = buildPythonPackage rec {
|
||||
inherit (prev.sources.wik) pname version src;
|
||||
|
||||
|
|
|
@ -1,20 +1,20 @@
|
|||
self:
|
||||
with self; let
|
||||
websocket-client = python39.pkgs.buildPythonPackage rec {
|
||||
websocket-client = python3.pkgs.buildPythonPackage rec {
|
||||
pname = "websocket-client";
|
||||
version = "1.2.1";
|
||||
doCheck = false;
|
||||
src = python39.pkgs.fetchPypi {
|
||||
src = python3.pkgs.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-jftxXYqZL1cS//jIQ62ulOIrIqmbLF5rDsShqYHMTg0=";
|
||||
};
|
||||
};
|
||||
in
|
||||
python39.pkgs.buildPythonPackage rec {
|
||||
python3.pkgs.buildPythonPackage rec {
|
||||
pname = "Mopidy-Jellyfin";
|
||||
version = "1.0.2";
|
||||
doCheck = false;
|
||||
propagatedBuildInputs = with python39.pkgs; [
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
unidecode
|
||||
websocket-client
|
||||
requests
|
||||
|
@ -22,7 +22,7 @@ in
|
|||
pykka
|
||||
mopidy
|
||||
];
|
||||
src = python39.pkgs.fetchPypi {
|
||||
src = python3.pkgs.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-5XimIIQSpvNyQbSOFtSTkA0jhA0V68BbyQEQNnov+0g=";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue