chore: python3{9,10}Packages -> python3Packages

This commit is contained in:
teutat3s 2023-05-17 23:56:46 +02:00
parent 4fdebfa058
commit fe4550bfc7
Signed by: teutat3s
GPG key ID: 4FA1D3FA524F22C1
4 changed files with 8 additions and 8 deletions

View file

@ -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

View file

@ -40,7 +40,7 @@ in {
qemu
vagrant
virt-manager
python39Packages.libvirt
python3Packages.libvirt
gvfs
edk2
OVMF

View file

@ -1,5 +1,5 @@
final: prev:
with prev.python310Packages; {
with prev.python3Packages; {
python-wiki-fetch = buildPythonPackage rec {
inherit (prev.sources.wik) pname version src;

View file

@ -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=";
};