lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
449a683b df35c8ee

+2780 -559
+5
.github/CODEOWNERS
··· 196 196 /nixos/tests/kea.nix @mweinelt 197 197 /nixos/tests/knot.nix @mweinelt 198 198 199 + # Web servers 200 + /doc/builders/packages/nginx.section.md @raitobezarius 201 + /pkgs/servers/http/nginx/ @raitobezarius 202 + /nixos/modules/services/web-servers/nginx/ @raitobezarius 203 + 199 204 # Dhall 200 205 /pkgs/development/dhall-modules @Gabriella439 @Profpatsch @ehmry 201 206 /pkgs/development/interpreters/dhall @Gabriella439 @Profpatsch @ehmry
+7
lib/licenses.nix
··· 657 657 redistributable = true; 658 658 }; 659 659 660 + hl3 = { 661 + fullName = "Hippocratic License v3.0"; 662 + url = "https://firstdonoharm.dev/version/3/0/core.txt"; 663 + free = false; 664 + redistributable = true; 665 + }; 666 + 660 667 issl = { 661 668 fullName = "Intel Simplified Software License"; 662 669 url = "https://software.intel.com/en-us/license/intel-simplified-software-license";
+27
maintainers/maintainer-list.nix
··· 1756 1756 fingerprint = "6FBC A462 4EAF C69C A7C4 98C1 F044 3098 48A0 7CAC"; 1757 1757 }]; 1758 1758 }; 1759 + babeuh = { 1760 + name = "Raphael Le Goaller"; 1761 + email = "babeuh@rlglr.fr"; 1762 + github = "babeuh"; 1763 + githubId = 60193302; 1764 + }; 1759 1765 bachp = { 1760 1766 email = "pascal.bach@nextrem.ch"; 1761 1767 matrix = "@bachp:matrix.org"; ··· 5807 5813 githubId = 17859309; 5808 5814 name = "Fuzen"; 5809 5815 }; 5816 + fwc = { 5817 + github = "fwc"; 5818 + githubId = 29337229; 5819 + name = "mtths"; 5820 + }; 5810 5821 fxfactorial = { 5811 5822 email = "edgar.factorial@gmail.com"; 5812 5823 github = "fxfactorial"; ··· 9077 9088 githubId = 5759930; 9078 9089 name = "Alexis Destrez"; 9079 9090 }; 9091 + krupkat = { 9092 + github = "krupkat"; 9093 + githubId = 6817216; 9094 + name = "Tomas Krupka"; 9095 + matrix = "@krupkat:matrix.org"; 9096 + }; 9080 9097 ktf = { 9081 9098 email = "giulio.eulisse@cern.ch"; 9082 9099 github = "ktf"; ··· 10035 10052 github = "Madouura"; 10036 10053 githubId = 93990818; 10037 10054 name = "Madoura"; 10055 + }; 10056 + maeve = { 10057 + email = "mrey@mailbox.org"; 10058 + matrix = "@maeve:catgirl.cloud"; 10059 + github = "m-rey"; 10060 + githubId = 42996147; 10061 + name = "Mæve"; 10062 + keys = [{ 10063 + fingerprint = "96C9 D086 CC9D 7BD7 EF24 80E2 9168 796A 1CC3 AEA2"; 10064 + }]; 10038 10065 }; 10039 10066 mafo = { 10040 10067 email = "Marc.Fontaine@gmx.de";
+1 -3
maintainers/team-list.nix
··· 821 821 }; 822 822 823 823 sphinx = { 824 - members = [ 825 - SuperSandro2000 826 - ]; 824 + members = [ ]; 827 825 scope = "Maintain Sphinx related packages."; 828 826 shortName = "Sphinx"; 829 827 };
+1 -1
nixos/modules/installer/tools/tools.nix
··· 126 126 # your system. Help is available in the configuration.nix(5) man page 127 127 # and in the NixOS manual (accessible by running `nixos-help`). 128 128 129 - { config, pkgs, ... }: 129 + { config, lib, pkgs, ... }: 130 130 131 131 { 132 132 imports =
+1 -1
nixos/modules/services/audio/jmusicbot.nix
··· 44 44 }; 45 45 }; 46 46 47 - meta.maintainers = with maintainers; [ SuperSandro2000 ]; 47 + meta.maintainers = with maintainers; [ ]; 48 48 }
+7 -5
nixos/modules/services/backup/tarsnap.nix
··· 32 32 services.tarsnap = { 33 33 enable = mkEnableOption (lib.mdDoc "periodic tarsnap backups"); 34 34 35 + package = mkPackageOption pkgs "tarsnap" { }; 36 + 35 37 keyfile = mkOption { 36 38 type = types.str; 37 39 default = "/root/tarsnap.key"; ··· 307 309 requires = [ "network-online.target" ]; 308 310 after = [ "network-online.target" ]; 309 311 310 - path = with pkgs; [ iputils tarsnap util-linux ]; 312 + path = with pkgs; [ iputils gcfg.package util-linux ]; 311 313 312 314 # In order for the persistent tarsnap timer to work reliably, we have to 313 315 # make sure that the tarsnap server is reachable after systemd starts up ··· 318 320 ''; 319 321 320 322 script = let 321 - tarsnap = ''tarsnap --configfile "/etc/tarsnap/${name}.conf"''; 323 + tarsnap = ''${lib.getExe gcfg.package} --configfile "/etc/tarsnap/${name}.conf"''; 322 324 run = ''${tarsnap} -c -f "${name}-$(date +"%Y%m%d%H%M%S")" \ 323 325 ${optionalString cfg.verbose "-v"} \ 324 326 ${optionalString cfg.explicitSymlinks "-H"} \ ··· 355 357 description = "Tarsnap restore '${name}'"; 356 358 requires = [ "network-online.target" ]; 357 359 358 - path = with pkgs; [ iputils tarsnap util-linux ]; 360 + path = with pkgs; [ iputils gcfg.package util-linux ]; 359 361 360 362 script = let 361 - tarsnap = ''tarsnap --configfile "/etc/tarsnap/${name}.conf"''; 363 + tarsnap = ''${lib.getExe gcfg.package} --configfile "/etc/tarsnap/${name}.conf"''; 362 364 lastArchive = "$(${tarsnap} --list-archives | sort | tail -1)"; 363 365 run = ''${tarsnap} -x -f "${lastArchive}" ${optionalString cfg.verbose "-v"}''; 364 366 cachedir = escapeShellArg cfg.cachedir; ··· 402 404 { text = configFile name cfg; 403 405 }) gcfg.archives; 404 406 405 - environment.systemPackages = [ pkgs.tarsnap ]; 407 + environment.systemPackages = [ gcfg.package ]; 406 408 }; 407 409 }
+2
nixos/modules/services/web-apps/cloudlog.nix
··· 308 308 pools.cloudlog = { 309 309 inherit (cfg) user; 310 310 group = config.services.nginx.group; 311 + # cloudlog is currently broken on php 8.2 312 + phpPackage = pkgs.php81; 311 313 settings = { 312 314 "listen.owner" = config.services.nginx.user; 313 315 "listen.group" = config.services.nginx.group;
+5 -11
nixos/modules/tasks/filesystems/zfs.nix
··· 119 119 "systemd-modules-load.service" 120 120 "systemd-ask-password-console.service" 121 121 ]; 122 - wantedBy = (getPoolMounts prefix pool) ++ [ "local-fs.target" ]; 123 - before = (getPoolMounts prefix pool) ++ [ "local-fs.target" ]; 122 + requiredBy = getPoolMounts prefix pool ++ [ "zfs-import.target" ]; 123 + before = getPoolMounts prefix pool ++ [ "zfs-import.target" ]; 124 124 unitConfig = { 125 125 DefaultDependencies = "no"; 126 126 }; ··· 628 628 force = cfgZfs.forceImportRoot; 629 629 prefix = "/sysroot"; 630 630 }) rootPools); 631 + targets.zfs-import.wantedBy = [ "zfs.target" ]; 632 + targets.zfs.wantedBy = [ "initrd.target" ]; 631 633 extraBin = { 632 634 # zpool and zfs are already in thanks to fsPackages 633 635 awk = "${pkgs.gawk}/bin/awk"; ··· 739 741 map createSyncService allPools ++ 740 742 map createZfsService [ "zfs-mount" "zfs-share" "zfs-zed" ]); 741 743 742 - systemd.targets.zfs-import = 743 - let 744 - services = map (pool: "zfs-import-${pool}.service") dataPools; 745 - in 746 - { 747 - requires = services; 748 - after = services; 749 - wantedBy = [ "zfs.target" ]; 750 - }; 744 + systemd.targets.zfs-import.wantedBy = [ "zfs.target" ]; 751 745 752 746 systemd.targets.zfs.wantedBy = [ "multi-user.target" ]; 753 747 })
+4
nixos/tests/nginx-proxyprotocol/default.nix
··· 4 4 import ../make-test-python.nix ({ pkgs, ... }: { 5 5 name = "nginx-proxyprotocol"; 6 6 7 + meta = { 8 + maintainers = with pkgs.lib.maintainers; [ raitobezarius ]; 9 + }; 10 + 7 11 nodes = { 8 12 webserver = { pkgs, lib, ... }: { 9 13 environment.systemPackages = [ pkgs.netcat ];
+2 -2
pkgs/applications/audio/airwindows-lv2/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "airwindows-lv2"; 5 - version = "18.0"; 5 + version = "20.0"; 6 6 src = fetchFromGitHub { 7 7 owner = "hannesbraun"; 8 8 repo = pname; 9 9 rev = "v${version}"; 10 - sha256 = "sha256-06mfTvt0BXHUGZG2rnEbuOPIP+jD76mQZTo+m4b4lo4="; 10 + sha256 = "sha256-uflvUmUzOtF3BwiLfnd+qhz+ZYyn8AKvODFs599phhU="; 11 11 }; 12 12 13 13 nativeBuildInputs = [ meson ninja pkg-config ];
+1 -1
pkgs/applications/audio/jmusicbot/default.nix
··· 26 26 homepage = "https://github.com/jagrosh/MusicBot"; 27 27 sourceProvenance = with sourceTypes; [ binaryBytecode ]; 28 28 license = licenses.asl20; 29 - maintainers = with maintainers; [ SuperSandro2000 ]; 29 + maintainers = with maintainers; [ ]; 30 30 inherit (jre_headless.meta) platforms; 31 31 }; 32 32 }
+1 -1
pkgs/applications/audio/opustags/default.nix
··· 34 34 description = "Ogg Opus tags editor"; 35 35 platforms = platforms.all; 36 36 broken = stdenv.isDarwin; 37 - maintainers = with maintainers; [ kmein SuperSandro2000 ]; 37 + maintainers = with maintainers; [ kmein ]; 38 38 license = licenses.bsd3; 39 39 }; 40 40 }
+94 -21
pkgs/applications/audio/pianoteq/default.nix
··· 1 - { lib, stdenv, curl, jq, htmlq, xorg, alsa-lib, freetype, p7zip, autoPatchelfHook, writeShellScript, zlib, libjack2, makeWrapper }: 1 + { lib 2 + , stdenv 3 + , curl 4 + , jq 5 + , htmlq 6 + , xorg 7 + , alsa-lib 8 + , freetype 9 + , p7zip 10 + , autoPatchelfHook 11 + , writeShellScript 12 + , zlib 13 + , libjack2 14 + , makeWrapper 15 + , copyDesktopItems 16 + , makeDesktopItem 17 + , librsvg 18 + }: 2 19 let 3 - versionForFile = v: builtins.replaceStrings ["."] [""] v; 20 + versionForFile = v: builtins.replaceStrings [ "." ] [ "" ] v; 4 21 5 - mkPianoteq = { name, src, version, archdir ? if (stdenv.hostPlatform.system == "aarch64-linux") then "arm-64bit" else "x86-64bit", ... }: 22 + mkPianoteq = 23 + { name 24 + , mainProgram 25 + , startupWMClass 26 + , src 27 + , version 28 + , archdir ? if (stdenv.hostPlatform.system == "aarch64-linux") then "arm-64bit" else "x86-64bit" 29 + , ... 30 + }: 6 31 stdenv.mkDerivation rec { 7 32 inherit src version; 8 33 ··· 14 39 15 40 nativeBuildInputs = [ 16 41 autoPatchelfHook 42 + copyDesktopItems 17 43 makeWrapper 44 + librsvg 18 45 ]; 19 46 20 47 buildInputs = [ 21 48 stdenv.cc.cc.lib 22 - xorg.libX11 # libX11.so.6 23 - xorg.libXext # libXext.so.6 24 - alsa-lib # libasound.so.2 25 - freetype # libfreetype.so.6 49 + xorg.libX11 # libX11.so.6 50 + xorg.libXext # libXext.so.6 51 + alsa-lib # libasound.so.2 52 + freetype # libfreetype.so.6 53 + ]; 54 + 55 + desktopItems = [ 56 + (makeDesktopItem { 57 + name = pname; 58 + exec = ''"${mainProgram}"''; 59 + desktopName = mainProgram; 60 + icon = "pianoteq"; 61 + comment = meta.description; 62 + categories = [ "AudioVideo" "Audio" "Recorder" ]; 63 + startupNotify = false; 64 + inherit startupWMClass; 65 + }) 26 66 ]; 27 67 28 68 installPhase = '' 69 + runHook preInstall 29 70 mkdir -p $out/bin 30 71 mv -t $out/bin Pianoteq*/${archdir}/* 31 72 for f in $out/bin/Pianoteq*; do ··· 41 82 } 42 83 fi 43 84 done 85 + install -Dm644 ${./pianoteq.svg} $out/share/icons/hicolor/scalable/apps/pianoteq.svg 86 + for size in 16 22 32 48 64 128 256; do 87 + dir=$out/share/icons/hicolor/"$size"x"$size"/apps 88 + mkdir -p $dir 89 + rsvg-convert \ 90 + --keep-aspect-ratio \ 91 + --width $size \ 92 + --height $size \ 93 + --output $dir/pianoteq.png \ 94 + ${./pianoteq.svg} 95 + done 96 + runHook postInstall 44 97 ''; 45 98 46 99 meta = with lib; { 47 100 homepage = "https://www.modartt.com/pianoteq"; 48 101 description = "Software synthesizer that features real-time MIDI-control of digital physically modeled pianos and related instruments"; 49 102 license = licenses.unfree; 103 + inherit mainProgram; 50 104 platforms = [ "x86_64-linux" "aarch64-linux" ]; 51 - maintainers = [ maintainers.mausch ]; 105 + maintainers = with maintainers; [ mausch ners ]; 52 106 }; 53 107 }; 54 108 55 - fetchWithCurlScript = { name, sha256, script, impureEnvVars ? [] }: 109 + fetchWithCurlScript = { name, hash, script, impureEnvVars ? [ ] }: 56 110 stdenv.mkDerivation { 57 111 inherit name; 58 112 builder = writeShellScript "builder.sh" '' ··· 81 135 ''; 82 136 nativeBuildInputs = [ curl ]; 83 137 outputHashAlgo = "sha256"; 84 - outputHash = sha256; 138 + outputHash = hash; 85 139 86 140 impureEnvVars = lib.fetchers.proxyImpureEnvVars ++ impureEnvVars ++ [ 87 141 # This variable allows the user to pass additional options to curl ··· 89 143 ]; 90 144 }; 91 145 92 - fetchPianoteqTrial = { name, sha256 }: 146 + fetchPianoteqTrial = { name, hash }: 93 147 fetchWithCurlScript { 94 - inherit name sha256; 148 + inherit name hash; 95 149 script = '' 96 150 html=$( 97 151 "''${curl[@]}" --silent --request GET \ ··· 122 176 ''; 123 177 }; 124 178 125 - fetchPianoteqWithLogin = { name, sha256 }: 179 + fetchPianoteqWithLogin = { name, hash }: 126 180 fetchWithCurlScript { 127 - inherit name sha256; 181 + inherit name hash; 128 182 129 183 impureEnvVars = [ "NIX_MODARTT_USERNAME" "NIX_MODARTT_PASSWORD" ]; 130 184 ··· 164 218 ''; 165 219 }; 166 220 167 - in { 221 + in 222 + { 168 223 # TODO currently can't install more than one because `lame` clashes 169 224 stage-trial = mkPianoteq rec { 170 225 name = "stage-trial"; 171 - version = "8.0.8"; 226 + mainProgram = "Pianoteq 8 STAGE"; 227 + startupWMClass = "Pianoteq STAGE Trial"; 228 + version = "8.1.1"; 172 229 src = fetchPianoteqTrial { 173 230 name = "pianoteq_stage_linux_trial_v${versionForFile version}.7z"; 174 - sha256 = "sha256-dp0bTzzh4aQ2KQ3z9zk+3meKQY4YRYQ86rccHd3+hAQ="; 231 + hash = "sha256-jMGv95WiD7UHAuSzKgauLhlsNvO/RWVrHd2Yf3kiUTo="; 175 232 }; 176 233 }; 177 234 standard-trial = mkPianoteq rec { 178 235 name = "standard-trial"; 179 - version = "8.0.8"; 236 + mainProgram = "Pianoteq 8"; 237 + startupWMClass = "Pianoteq Trial"; 238 + version = "8.1.1"; 180 239 src = fetchPianoteqTrial { 181 240 name = "pianoteq_linux_trial_v${versionForFile version}.7z"; 182 - sha256 = "sha256-LSrnrjkEhsX9TirUUFs9tNqH2A3cTt3I7YTfcTT6EP8="; 241 + hash = "sha256-pL4tJMV8OTVLT4fwABcImWO+iaVe9gCdDN3rbkL+noc="; 183 242 }; 184 243 }; 185 244 stage-6 = mkPianoteq rec { 186 245 name = "stage-6"; 246 + mainProgram = "Pianoteq 6 STAGE"; 247 + startupWMClass = "Pianoteq STAGE"; 187 248 version = "6.7.3"; 188 249 archdir = if (stdenv.hostPlatform.system == "aarch64-linux") then throw "Pianoteq stage-6 is not supported on aarch64-linux" else "amd64"; 189 250 src = fetchPianoteqWithLogin { 190 251 name = "pianoteq_stage_linux_v${versionForFile version}.7z"; 191 - sha256 = "0jy0hkdynhwv0zhrqkby0hdphgmcc09wxmy74rhg9afm1pzl91jy"; 252 + hash = "0jy0hkdynhwv0zhrqkby0hdphgmcc09wxmy74rhg9afm1pzl91jy"; 192 253 }; 193 254 }; 194 255 stage-7 = mkPianoteq rec { 195 256 name = "stage-7"; 257 + mainProgram = "Pianoteq 7 STAGE"; 258 + startupWMClass = "Pianoteq STAGE"; 196 259 version = "7.3.0"; 197 260 src = fetchPianoteqWithLogin { 198 261 name = "pianoteq_stage_linux_v${versionForFile version}.7z"; 199 - sha256 = "05w7sv9v38r6ljz9xai816w5z2qqwx88hcfjm241fvgbs54125hx"; 262 + hash = "05w7sv9v38r6ljz9xai816w5z2qqwx88hcfjm241fvgbs54125hx"; 263 + }; 264 + }; 265 + standard-8 = mkPianoteq rec { 266 + name = "standard-8"; 267 + mainProgram = "Pianoteq 8"; 268 + startupWMClass = "Pianoteq"; 269 + version = "8.1.1"; 270 + src = fetchPianoteqWithLogin { 271 + name = "pianoteq_linux_v${versionForFile version}.7z"; 272 + hash = "sha256-vWvo+ctJ0yN6XeJZZVhA3Ul9eWJWAh7Qo54w0TpOiVw="; 200 273 }; 201 274 }; 202 275 # TODO other paid binaries, I don't own that so I don't know their hash.
+116
pkgs/applications/audio/pianoteq/pianoteq.svg
··· 1 + <?xml version="1.0" encoding="UTF-8" standalone="no"?> 2 + <!-- Created with Inkscape (http://www.inkscape.org/) --> 3 + 4 + <svg 5 + width="1000" 6 + height="1000" 7 + viewBox="0 0 264.58333 264.58334" 8 + version="1.1" 9 + id="svg5" 10 + inkscape:version="1.1 (c4e8f9e, 2021-05-24)" 11 + sodipodi:docname="Pianoteq macOS app icon.svg" 12 + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" 13 + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" 14 + xmlns:xlink="http://www.w3.org/1999/xlink" 15 + xmlns="http://www.w3.org/2000/svg" 16 + xmlns:svg="http://www.w3.org/2000/svg"> 17 + <sodipodi:namedview 18 + id="namedview7" 19 + pagecolor="#ffffff" 20 + bordercolor="#666666" 21 + borderopacity="1.0" 22 + inkscape:pageshadow="2" 23 + inkscape:pageopacity="0.0" 24 + inkscape:pagecheckerboard="0" 25 + inkscape:document-units="mm" 26 + showgrid="false" 27 + units="px" 28 + inkscape:snap-global="false" 29 + inkscape:zoom="0.55678311" 30 + inkscape:cx="387.04479" 31 + inkscape:cy="561.25984" 32 + inkscape:window-width="1960" 33 + inkscape:window-height="1125" 34 + inkscape:window-x="780" 35 + inkscape:window-y="181" 36 + inkscape:window-maximized="0" 37 + inkscape:current-layer="layer1" /> 38 + <defs 39 + id="defs2"> 40 + <linearGradient 41 + inkscape:collect="always" 42 + id="linearGradient79"> 43 + <stop 44 + style="stop-color:#1b579e;stop-opacity:1" 45 + offset="0" 46 + id="stop75" /> 47 + <stop 48 + style="stop-color:#002146;stop-opacity:1" 49 + offset="1" 50 + id="stop77" /> 51 + </linearGradient> 52 + <linearGradient 53 + inkscape:collect="always" 54 + xlink:href="#linearGradient79" 55 + id="linearGradient81" 56 + x1="-73.180801" 57 + y1="67.478401" 58 + x2="103.1184" 59 + y2="264.6864" 60 + gradientUnits="userSpaceOnUse" 61 + gradientTransform="translate(117.76853,-32.76193)" /> 62 + <filter 63 + style="color-interpolation-filters:sRGB;" 64 + inkscape:label="Drop Shadow" 65 + id="filter9691" 66 + x="-0.019462447" 67 + y="-0.019425019" 68 + width="1.0486367" 69 + height="1.0497548"> 70 + <feFlood 71 + flood-opacity="0.27451" 72 + flood-color="rgb(0,0,0)" 73 + result="flood" 74 + id="feFlood9681" /> 75 + <feComposite 76 + in="flood" 77 + in2="SourceGraphic" 78 + operator="in" 79 + result="composite1" 80 + id="feComposite9683" /> 81 + <feGaussianBlur 82 + in="composite1" 83 + stdDeviation="2" 84 + result="blur" 85 + id="feGaussianBlur9685" /> 86 + <feOffset 87 + dx="2.39521" 88 + dy="2.69461" 89 + result="offset" 90 + id="feOffset9687" /> 91 + <feComposite 92 + in="SourceGraphic" 93 + in2="offset" 94 + operator="over" 95 + result="composite2" 96 + id="feComposite9689" /> 97 + </filter> 98 + </defs> 99 + <g 100 + inkscape:label="Calque 1" 101 + inkscape:groupmode="layer" 102 + id="layer1"> 103 + <rect 104 + style="fill:url(#linearGradient81);fill-opacity:1;stroke-width:0.264583;filter:url(#filter9691)" 105 + id="rect43" 106 + width="246.6288" 107 + height="247.104" 108 + x="8.9477348" 109 + y="8.5804749" 110 + ry="55.5984" /> 111 + <path 112 + style="display:inline;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#f2f2f2;stroke-width:0.79375;stroke-miterlimit:4;stroke-dasharray:none" 113 + d="m 57.571897,38.584169 -0.432206,49.706154 c -0.01643,2.541563 0.73098,6.308484 1.728908,8.644552 l 29.823694,70.020845 c 0.997959,2.33702 1.728905,6.103 1.728905,8.64457 v 42.7905 5.18674 h 13.399052 v -9.07678 -41.49384 c 0,-2.5425 -0.74515,-6.73408 -1.72891,-9.07677 L 73.132109,94.773742 c -0.983783,-2.342684 -1.702961,-6.534987 -1.728908,-9.07678 L 70.538748,38.584169 Z m 54.028433,0 v 49.706154 c -0.0122,2.541804 0.73091,6.307531 1.72892,8.644552 l 29.82369,70.020845 c 0.99555,2.33702 1.7289,6.10182 1.7289,8.64457 v 42.7905 5.18674 h 13.39904 v -9.07678 -41.49384 c 0,-2.54085 -0.74504,-6.73314 -1.7289,-9.07677 L 127.16051,94.773742 c -0.98371,-2.342684 -1.69823,-6.535929 -1.7289,-9.07678 l -0.4322,-47.112793 z m 51.43506,0 -0.4322,49.706154 c -0.0145,2.541804 0.73092,6.307531 1.72892,8.644552 l 29.8237,70.020845 c 0.99796,2.33702 1.72892,6.10182 1.72892,8.64457 v 42.7905 5.18674 h 13.39904 v -9.07678 -41.49384 c 0,-2.54085 -0.74734,-6.73314 -1.7289,-9.07677 L 178.5956,94.773742 c -0.98382,-2.342684 -1.70296,-6.535929 -1.72892,-9.07678 L 176.00224,38.584169 Z M 82.208865,78.349097 c -4.992071,0 -8.644549,4.079046 -8.644549,9.076769 0,4.999387 3.652478,9.076791 8.644549,9.076791 4.980272,0 9.07678,-4.077404 9.07678,-9.076791 0,-4.997723 -4.096508,-9.076769 -9.07678,-9.076769 z m 54.460655,0 c -4.98969,0 -9.07677,4.079287 -9.07677,9.076769 0,4.994908 4.08708,9.076791 9.07677,9.076791 4.98263,0 9.07678,-4.081883 9.07678,-9.076791 0,-4.997482 -4.09415,-9.076769 -9.07678,-9.076769 z m 51.00284,0 c -4.98971,0 -8.64455,4.079287 -8.64455,9.076769 0,4.994908 3.65484,9.076791 8.64455,9.076791 4.98498,0 9.07678,-4.081883 9.07678,-9.076791 0,-4.997482 -4.0918,-9.076769 -9.07678,-9.076769 z M 79.183276,164.79459 c -4.982626,0 -8.644557,4.0781 -8.644557,9.07679 0,4.99393 3.661931,9.07676 8.644557,9.07676 4.992059,0 9.07677,-4.08283 9.07677,-9.07676 0,-4.99869 -4.084711,-9.07679 -9.07677,-9.07679 z m 54.460654,0 c -4.97556,0 -9.07677,4.07622 -9.07677,9.07679 0,4.99748 4.10121,9.07676 9.07677,9.07676 4.99207,0 9.07678,-4.07928 9.07678,-9.07676 0,-5.00057 -4.08471,-9.07679 -9.07678,-9.07679 z m 51.00285,0 c -4.99208,0 -8.64456,4.07622 -8.64456,9.07679 0,4.99748 3.65248,9.07676 8.64456,9.07676 4.98734,0 9.07677,-4.07928 9.07677,-9.07676 0,-5.00057 -4.08943,-9.07679 -9.07677,-9.07679 z" 114 + id="path2997-3-6" /> 115 + </g> 116 + </svg>
+5 -5
pkgs/applications/audio/spotify/darwin.nix
··· 9 9 stdenv.mkDerivation { 10 10 inherit pname; 11 11 12 - version = "1.1.97.962.g24733a46"; 12 + version = "1.2.15.828.g79f41970"; 13 13 14 14 src = if stdenv.isAarch64 then ( 15 15 fetchurl { 16 - url = "https://web.archive.org/web/20221101120432/https://download.scdn.co/SpotifyARM64.dmg"; 17 - sha256 = "sha256-8WDeVRgaZXuUa95PNa15Cuul95ynklBaZpuq+U1eGTU="; 16 + url = "https://web.archive.org/web/20230710021420/https://download.scdn.co/SpotifyARM64.dmg"; 17 + sha256 = "sha256-1X0Mln47uYs5l1t+5BFBk5lLnXZgnSqZLX41yA91I0s="; 18 18 }) 19 19 else ( 20 20 fetchurl { 21 - url = "https://web.archive.org/web/20221101120647/https://download.scdn.co/Spotify.dmg"; 22 - sha256 = "sha256-uPpD8Hv70FlaSjtt9rq5ntI64agxG8+/LNEvRe4ocJ4="; 21 + url = "https://web.archive.org/web/20230710021726/https://download.scdn.co/Spotify.dmg"; 22 + sha256 = "sha256-CmKZx8Ad0w6STBN0O4Sc4XqidOM6fCl74u2sI8w+Swk="; 23 23 }); 24 24 25 25 nativeBuildInputs = [ undmg ];
+1 -1
pkgs/applications/editors/vscode/extensions/default.nix
··· 1895 1895 downloadPage = "https://marketplace.visualstudio.com/items?itemName=jnoortheen.nix-ide"; 1896 1896 homepage = "https://github.com/jnoortheen/vscode-nix-ide"; 1897 1897 license = lib.licenses.mit; 1898 - maintainers = [ lib.maintainers.SuperSandro2000 ]; 1898 + maintainers = [ ]; 1899 1899 }; 1900 1900 }; 1901 1901
+1 -1
pkgs/applications/editors/vscode/extensions/ms-vscode-remote.remote-ssh/default.nix
··· 97 97 meta = { 98 98 description = "Use any remote machine with a SSH server as your development environment."; 99 99 license = lib.licenses.unfree; 100 - maintainers = [ lib.maintainers.SuperSandro2000 lib.maintainers.tbenst ]; 100 + maintainers = [ lib.maintainers.tbenst ]; 101 101 }; 102 102 }
+2 -2
pkgs/applications/file-managers/browsr/default.nix
··· 6 6 7 7 python3.pkgs.buildPythonApplication rec { 8 8 pname = "browsr"; 9 - version = "1.12.0"; 9 + version = "1.13.0"; 10 10 format = "pyproject"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "juftin"; 14 14 repo = "browsr"; 15 15 rev = "v${version}"; 16 - hash = "sha256-4i9jm4Rz2GepJHUvYXfjfNa/RxY2+16CmtLP70pb/DQ="; 16 + hash = "sha256-vYb4XWBdQ4HJzICXNiBXit4aVgjYA9SCX15MppVtTS8="; 17 17 }; 18 18 19 19 nativeBuildInputs = with python3.pkgs; [
+2 -2
pkgs/applications/graphics/ImageMagick/default.nix
··· 47 47 48 48 stdenv.mkDerivation (finalAttrs: { 49 49 pname = "imagemagick"; 50 - version = "7.1.1-13"; 50 + version = "7.1.1-14"; 51 51 52 52 src = fetchFromGitHub { 53 53 owner = "ImageMagick"; 54 54 repo = "ImageMagick"; 55 55 rev = finalAttrs.version; 56 - hash = "sha256-HrUka7VLF9YH23TxDQeQpulQf3ssSfYOhi29v2onvCE="; 56 + hash = "sha256-vZ3ILHIRxwB3ho7hlJpC7hlo7Nhb56SjZ/hgdoh1rwY="; 57 57 }; 58 58 59 59 outputs = [ "out" "dev" "doc" ]; # bin/ isn't really big
+11 -9
pkgs/applications/graphics/artem/default.nix
··· 2 2 , rustPlatform 3 3 , fetchFromGitHub 4 4 , installShellFiles 5 - , pkg-config 6 - , openssl 5 + , stdenv 6 + , darwin 7 7 }: 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "artem"; 11 - version = "1.2.1"; 11 + version = "2.0.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "finefindus"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-T652cdKVZqoZ+EwXmTSs9x+ftjvWOELjy37trCP7V+0="; 17 + hash = "sha256-liYZloaXN9doNyPO76iCaiZO9ZkNGBm+BxxNX87ZqBM="; 18 18 }; 19 19 20 - cargoSha256 = "sha256-2LXpvAbkpk2sJHZJvytwLYksZK4coVYyKvuNRiDK0Gg="; 21 - 22 - nativeBuildInputs = [ installShellFiles pkg-config ]; 20 + cargoHash = "sha256-fTAuh4jbfNpFaEu1X0LwVA30ghQ6mh5/Afap7gUjzMc="; 23 21 24 - buildInputs = [ openssl ]; 22 + nativeBuildInputs = [ 23 + installShellFiles 24 + ]; 25 25 26 - OPENSSL_NO_VENDOR = 1; 26 + buildInputs = lib.optionals stdenv.isDarwin [ 27 + darwin.apple_sdk.frameworks.Security 28 + ]; 27 29 28 30 checkFlags = [ 29 31 # require internet access
+2 -2
pkgs/applications/graphics/vipsdisp/default.nix
··· 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "vipsdisp"; 15 - version = "2.4.1"; 15 + version = "2.5.0"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "jcupitt"; 19 19 repo = "vipsdisp"; 20 20 rev = "v${version}"; 21 - sha256 = "sha256-zftvjH5hyWBpjRe5uQBDAqbThQaQFHz0UhzM5q8hSk8="; 21 + hash = "sha256-zAvwT6tlL4+EYxJSjnb3Eud1MVbj7Yz4vJcrqM5jXDQ="; 22 22 }; 23 23 24 24 postPatch = ''
+66
pkgs/applications/graphics/xpano/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , pkg-config 6 + , ninja 7 + , opencv 8 + , SDL2 9 + , gtk3 10 + , catch2_3 11 + , spdlog 12 + , exiv2 13 + , wrapGAppsHook 14 + }: 15 + 16 + stdenv.mkDerivation rec { 17 + pname = "xpano"; 18 + version = "0.16.1"; 19 + 20 + src = fetchFromGitHub { 21 + owner = "krupkat"; 22 + repo = pname; 23 + rev = "v${version}"; 24 + sha256 = "1f95spf7bbbdvbr4gqfyrs161049jj1wnkvf5wgsd0ga3vb15mcj"; 25 + fetchSubmodules = true; 26 + }; 27 + 28 + patches = [ 29 + # force install desktop + icon files 30 + ./skip_prefix_check.patch 31 + ]; 32 + 33 + nativeBuildInputs = [ 34 + cmake 35 + ninja 36 + pkg-config 37 + wrapGAppsHook 38 + ]; 39 + 40 + buildInputs = [ 41 + opencv 42 + SDL2 43 + gtk3 44 + spdlog 45 + # exiv2 # TODO: enable when 0.28.0 is available 46 + ]; 47 + 48 + checkInputs = [ 49 + catch2_3 50 + ]; 51 + 52 + doCheck = true; 53 + 54 + cmakeFlags = [ 55 + "-DBUILD_TESTING=ON" 56 + ]; 57 + 58 + meta = with lib; { 59 + description = "A panorama stitching tool"; 60 + homepage = "https://krupkat.github.io/xpano/"; 61 + changelog = "https://github.com/krupkat/xpano/releases/tag/v${version}"; 62 + license = licenses.gpl3Plus; 63 + maintainers = with maintainers; [ krupkat ]; 64 + platforms = platforms.linux; 65 + }; 66 + }
+18
pkgs/applications/graphics/xpano/skip_prefix_check.patch
··· 1 + --- a/CMakeLists.txt 2 + +++ b/CMakeLists.txt 3 + @@ -167,7 +167,6 @@ install(FILES 4 + TYPE BIN 5 + ) 6 + 7 + -if(CMAKE_INSTALL_PREFIX MATCHES "^/usr.*|^/app.*") 8 + install(FILES 9 + "misc/build/linux/xpano.desktop" 10 + DESTINATION "${CMAKE_INSTALL_PREFIX}/share/applications" 11 + @@ -184,7 +183,6 @@ if(CMAKE_INSTALL_PREFIX MATCHES "^/usr.*|^/app.*") 12 + "misc/build/linux/cz.krupkat.Xpano.metainfo.xml" 13 + DESTINATION "${CMAKE_INSTALL_PREFIX}/share/metainfo" 14 + ) 15 + -endif() 16 + 17 + install(DIRECTORY 18 + "${CMAKE_SOURCE_DIR}/misc/assets"
+1 -1
pkgs/applications/logging/sosreport/default.nix
··· 43 43 description = "Unified tool for collecting system logs and other debug information"; 44 44 homepage = "https://github.com/sosreport/sos"; 45 45 license = licenses.gpl2Only; 46 - maintainers = with maintainers; [ SuperSandro2000 ]; 46 + maintainers = with maintainers; [ ]; 47 47 }; 48 48 }
+1 -1
pkgs/applications/misc/binocle/default.nix
··· 44 44 description = "Graphical tool to visualize binary data"; 45 45 homepage = "https://github.com/sharkdp/binocle"; 46 46 license = with licenses; [ asl20 /* or */ mit ]; 47 - maintainers = with maintainers; [ SuperSandro2000 ]; 47 + maintainers = with maintainers; [ figsoda ]; 48 48 }; 49 49 }
+1 -1
pkgs/applications/misc/lemonade/default.nix
··· 30 30 description = "Remote utility tool that to copy, paste and open browsers over TCP"; 31 31 homepage = "https://github.com/lemonade-command/lemonade/"; 32 32 license = licenses.mit; 33 - maintainers = with maintainers; [ SuperSandro2000 ]; 33 + maintainers = with maintainers; [ ]; 34 34 }; 35 35 }
+40
pkgs/applications/misc/typioca/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + , testers 5 + , typioca 6 + }: 7 + 8 + buildGoModule rec { 9 + pname = "typioca"; 10 + version = "2.4.2"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "bloznelis"; 14 + repo = "typioca"; 15 + rev = version; 16 + hash = "sha256-gSHJkMyRgJ58kccQAh1bJNveirDaqGjlhrzgvEX5c8o="; 17 + }; 18 + 19 + vendorHash = "sha256-umtBvcfQoMQdWmQIAReeOkhRq+pelZzPvFsTq5ZwPXU="; 20 + 21 + ldflags = [ 22 + "-s" 23 + "-w" 24 + "-X=github.com/bloznelis/typioca/cmd.Version=${version}" 25 + ]; 26 + 27 + passthru.tests = { 28 + version = testers.testVersion { 29 + package = typioca; 30 + }; 31 + }; 32 + 33 + meta = with lib; { 34 + description = "Cozy typing speed tester in terminal"; 35 + homepage = "https://github.com/bloznelis/typioca"; 36 + changelog = "https://github.com/bloznelis/typioca/releases/tag/${src.rev}"; 37 + license = licenses.mit; 38 + maintainers = with maintainers; [ figsoda ]; 39 + }; 40 + }
+1 -1
pkgs/applications/networking/browsers/chromium/browser.nix
··· 86 86 else "https://www.chromium.org/"; 87 87 maintainers = with lib.maintainers; if ungoogled 88 88 then [ squalus primeos michaeladler networkexception ] 89 - else [ primeos thefloweringash ]; 89 + else [ primeos thefloweringash networkexception ]; 90 90 license = if enableWideVine then lib.licenses.unfree else lib.licenses.bsd3; 91 91 platforms = lib.platforms.linux; 92 92 mainProgram = "chromium";
-1
pkgs/applications/networking/browsers/chromium/common.nix
··· 309 309 # To fix the build as we don't provide libffi_pic.a 310 310 # (ld.lld: error: unable to find library -l:libffi_pic.a): 311 311 use_system_libffi = true; 312 - } // lib.optionalAttrs (chromiumVersionAtLeast "115") { 313 312 # Use nixpkgs Rust compiler instead of the one shipped by Chromium. 314 313 # We do intentionally not set rustc_version as nixpkgs will never do incremental 315 314 # rebuilds, thus leaving this empty is fine.
+24 -24
pkgs/applications/networking/browsers/chromium/upstream-info.json
··· 1 1 { 2 2 "stable": { 3 - "version": "114.0.5735.198", 4 - "sha256": "1shxlkass3s744mwc571cyzlb9cc8lxvi5wp35mzaldbxq7l9wx9", 5 - "sha256bin64": "0367sks2z7xj130bszimznkjjimfdimknd7qzi68335y9qzl1y92", 3 + "version": "115.0.5790.98", 4 + "sha256": "1wbasmwdqkg5jcmzpidvzjsq2n2dr73bxz85pr8a5j4grw767gpz", 5 + "sha256bin64": "0pyy348dgz2i8a8gacakli1brf6h1qx3m885ai9blkx1w1czvrj2", 6 6 "deps": { 7 7 "gn": { 8 - "version": "2023-04-19", 8 + "version": "2023-05-19", 9 9 "url": "https://gn.googlesource.com/gn", 10 - "rev": "5a004f9427a050c6c393c07ddb85cba8ff3849fa", 11 - "sha256": "01xrh9m9m6x8lz0vxwdw2mrhrvnw93zpg09hwdhqakj06agf4jjk" 10 + "rev": "e9e83d9095d3234adf68f3e2866f25daf766d5c7", 11 + "sha256": "0y07c18xskq4mclqiz3a63fz8jicz2kqridnvdhqdf75lhp61f8a" 12 12 } 13 13 }, 14 14 "chromedriver": { 15 - "version": "114.0.5735.90", 16 - "sha256_linux": "0i3g79c4vdi5mys295lpzmmh0pgxhh14mjmz9amhq5rrn7w7wy57", 17 - "sha256_darwin": "0l0nzx64vrr2wggwdyrcv0xbv79avr431cppprl4dg62b39wkgba", 18 - "sha256_darwin_aarch64": "0z549y1w855ljia5w8sf9w6398pnn89y28pg26ygqad888b3msql" 15 + "version": "115.0.5790.98", 16 + "sha256_linux": "1797qmb213anvp9lmrkj6wmfdwkdfswmshmk1816zankw5dl883j", 17 + "sha256_darwin": "1c41cb7zh13ny4xvpwy7703cnjrkmqxd3n8zpja7n6a38mi8mgsk", 18 + "sha256_darwin_aarch64": "1kliszw10jnnlhzi8jrdzjq0r7vfn6ksk1spsh2rfn2hmghccv2d" 19 19 } 20 20 }, 21 21 "beta": { 22 - "version": "115.0.5790.90", 23 - "sha256": "156k5cijkxj44r4cn14k7r2xa11xp0nwi7nsgxfmg3dfsay05s42", 24 - "sha256bin64": "1b573bd19ywwy0k8570501az1cw3xnp6iy53zk1a1gawsn8f4pv5", 22 + "version": "115.0.5790.98", 23 + "sha256": "1wbasmwdqkg5jcmzpidvzjsq2n2dr73bxz85pr8a5j4grw767gpz", 24 + "sha256bin64": "0xbizb3d539h1cw1kj9ahd8azmkcdfjdmqb5bpp8cr21bh2qbqp5", 25 25 "deps": { 26 26 "gn": { 27 27 "version": "2023-05-19", ··· 32 32 } 33 33 }, 34 34 "dev": { 35 - "version": "116.0.5845.32", 36 - "sha256": "0migfx1snbsa9a42cv37x6bkpa9j7y3n6h6hs0w79ss1hxmmj2mi", 37 - "sha256bin64": "1zdr2340lbkvwyw303954ba8cay44p9a5d6b9l693kcrgkf4z8bz", 35 + "version": "116.0.5845.42", 36 + "sha256": "1fvhh8fvm0rkb41mhsh4p3bahf4fk3gixan2x1bappm3hdcixffb", 37 + "sha256bin64": "1zq4vyvm0vij03rc0zwzknm17108ka8bl1lsayp1133y2fgbl9f8", 38 38 "deps": { 39 39 "gn": { 40 40 "version": "2023-06-09", ··· 45 45 } 46 46 }, 47 47 "ungoogled-chromium": { 48 - "version": "114.0.5735.198", 49 - "sha256": "1shxlkass3s744mwc571cyzlb9cc8lxvi5wp35mzaldbxq7l9wx9", 50 - "sha256bin64": "0367sks2z7xj130bszimznkjjimfdimknd7qzi68335y9qzl1y92", 48 + "version": "115.0.5790.98", 49 + "sha256": "1wbasmwdqkg5jcmzpidvzjsq2n2dr73bxz85pr8a5j4grw767gpz", 50 + "sha256bin64": "0pyy348dgz2i8a8gacakli1brf6h1qx3m885ai9blkx1w1czvrj2", 51 51 "deps": { 52 52 "gn": { 53 - "version": "2023-04-19", 53 + "version": "2023-05-19", 54 54 "url": "https://gn.googlesource.com/gn", 55 - "rev": "5a004f9427a050c6c393c07ddb85cba8ff3849fa", 56 - "sha256": "01xrh9m9m6x8lz0vxwdw2mrhrvnw93zpg09hwdhqakj06agf4jjk" 55 + "rev": "e9e83d9095d3234adf68f3e2866f25daf766d5c7", 56 + "sha256": "0y07c18xskq4mclqiz3a63fz8jicz2kqridnvdhqdf75lhp61f8a" 57 57 }, 58 58 "ungoogled-patches": { 59 - "rev": "114.0.5735.198-1", 60 - "sha256": "1zda5c7n43zviwj3n2r2zbhmylkrfy54hggq8cisbdrhhfn96vii" 59 + "rev": "115.0.5790.98-1", 60 + "sha256": "1n5djr4bkq5y4b8fp8g9bkwfjqmz2kqlpsscizxpm7n3p8c2m3yn" 61 61 } 62 62 } 63 63 }
+1 -1
pkgs/applications/networking/cawbird/default.nix
··· 83 83 homepage = "https://ibboard.co.uk/cawbird/"; 84 84 license = licenses.gpl3Plus; 85 85 platforms = platforms.linux; 86 - maintainers = with lib.maintainers; [ jonafato schmittlauch SuperSandro2000 ]; 86 + maintainers = with lib.maintainers; [ jonafato schmittlauch ]; 87 87 }; 88 88 }
+4 -3
pkgs/applications/networking/cluster/kubeseal/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kubeseal"; 5 - version = "0.22.0"; 5 + version = "0.23.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "bitnami-labs"; 9 9 repo = "sealed-secrets"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-Tp43JDLzfOARF+1aEG5A5POdOe0rMcllWPuAdlT6tdI="; 11 + sha256 = "sha256-Xtyn08rlBo17ouxSLQcVT8mQQ6nuDKPjE4OHBdze8/Q="; 12 12 }; 13 13 14 - vendorHash = "sha256-JXWWdr5xmgXKwHx9h9X6Y0IZ4pEkBQxJSCR3CTjgJ5I="; 14 + vendorHash = "sha256-MTueX4+cZIUdjE2BRLVGv7PJr3haV11woJmrkeKFpr0="; 15 15 16 16 subPackages = [ "cmd/kubeseal" ]; 17 17 ··· 20 20 meta = with lib; { 21 21 description = "A Kubernetes controller and tool for one-way encrypted Secrets"; 22 22 homepage = "https://github.com/bitnami-labs/sealed-secrets"; 23 + changelog = "https://github.com/bitnami-labs/sealed-secrets/blob/v${version}/RELEASE-NOTES.md"; 23 24 license = licenses.asl20; 24 25 maintainers = with maintainers; [ groodt ]; 25 26 };
+20
pkgs/applications/networking/cluster/temporal-cli/darwin-sandbox-fix.patch
··· 1 + --- vendor/modernc.org/libc/honnef.co/go/netdb/netdb.go 2 + +++ vendor/modernc.org/libc/honnef.co/go/netdb/netdb.go 3 + @@ -696,7 +696,7 @@ func init() { 4 + // Load protocols 5 + data, err := ioutil.ReadFile("/etc/protocols") 6 + if err != nil { 7 + - if !os.IsNotExist(err) { 8 + + if !os.IsNotExist(err) && !os.IsPermission(err) { 9 + panic(err) 10 + } 11 + 12 + @@ -732,7 +732,7 @@ func init() { 13 + // Load services 14 + data, err = ioutil.ReadFile("/etc/services") 15 + if err != nil { 16 + - if !os.IsNotExist(err) { 17 + + if !os.IsNotExist(err) && !os.IsPermission(err) { 18 + panic(err) 19 + } 20 +
+19 -2
pkgs/applications/networking/cluster/temporal-cli/default.nix
··· 1 1 { lib, fetchFromGitHub, buildGoModule, installShellFiles, symlinkJoin }: 2 2 3 3 let 4 + overrideModAttrs = old: { 5 + # https://gitlab.com/cznic/libc/-/merge_requests/10 6 + postBuild = '' 7 + patch -p0 < ${./darwin-sandbox-fix.patch} 8 + ''; 9 + }; 10 + 4 11 tctl-next = buildGoModule rec { 5 12 pname = "tctl-next"; 6 13 version = "0.9.0"; ··· 12 19 hash = "sha256-zgi1wNx7fWf/iFGKaVffcXnC90vUz+mBT6HhCGdXMa0="; 13 20 }; 14 21 15 - vendorHash = "sha256-muTNwK2Sb2+0df/6DtAzT14gwyuqa13jkG6eQaqhSKg="; 22 + vendorHash = "sha256-EX1T3AygarJn4Zae2I8CHQrZakmbNF1OwE4YZFF+nKc="; 23 + 24 + inherit overrideModAttrs; 16 25 17 26 nativeBuildInputs = [ installShellFiles ]; 18 27 ··· 33 42 --bash <($out/bin/temporal completion bash) \ 34 43 --zsh <($out/bin/temporal completion zsh) 35 44 ''; 45 + 46 + __darwinAllowLocalNetworking = true; 36 47 }; 37 48 38 49 tctl = buildGoModule rec { ··· 46 57 hash = "sha256-LcBKkx3mcDOrGT6yJx98CSgxbwskqGPWqOzHWOu6cig="; 47 58 }; 48 59 49 - vendorHash = "sha256-BUYEeC5zli++OxVFgECJGqJkbDwglLppSxgo+4AqOb0="; 60 + vendorHash = "sha256-5wCIY95mJ6+FCln4yBu+fM4ZcsxBGcXkCvxjGzt0+dM="; 61 + 62 + inherit overrideModAttrs; 50 63 51 64 nativeBuildInputs = [ installShellFiles ]; 52 65 ··· 63 76 --bash <($out/bin/tctl completion bash) \ 64 77 --zsh <($out/bin/tctl completion zsh) 65 78 ''; 79 + 80 + __darwinAllowLocalNetworking = true; 66 81 }; 67 82 in 68 83 symlinkJoin rec { ··· 74 89 tctl-next 75 90 tctl 76 91 ]; 92 + 93 + passthru = { inherit tctl tctl-next; }; 77 94 78 95 meta = with lib; { 79 96 description = "Temporal CLI";
+2 -2
pkgs/applications/networking/cluster/yor/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "yor"; 8 - version = "0.1.182"; 8 + version = "0.1.183"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "bridgecrewio"; 12 12 repo = pname; 13 13 rev = version; 14 - hash = "sha256-iTiRKqjynKsp/MF1/VuGWs/pibFAm6gLFrDqEoCrfR4="; 14 + hash = "sha256-OMwDqBZPzjeG47CKk/heRo0JxyN7E7qh/dnV8cAzUfo="; 15 15 }; 16 16 17 17 vendorHash = "sha256-ZeTjGmlu8LndD2DKNncPzlpECdvkOjfwaVvV6S3sL9E=";
+1 -1
pkgs/applications/networking/firewalld/default.nix
··· 99 99 description = "Firewall daemon with D-Bus interface"; 100 100 homepage = "https://github.com/firewalld/firewalld"; 101 101 license = licenses.gpl2Plus; 102 - maintainers = with maintainers; [ SuperSandro2000 ]; 102 + maintainers = with maintainers; [ ]; 103 103 }; 104 104 }
+1 -1
pkgs/applications/office/fava/default.nix
··· 19 19 click 20 20 flask 21 21 flask-babel 22 - jaraco_functools 22 + jaraco-functools 23 23 jinja2 24 24 markdown2 25 25 ply
+2 -2
pkgs/applications/office/portfolio/default.nix
··· 27 27 in 28 28 stdenv.mkDerivation rec { 29 29 pname = "PortfolioPerformance"; 30 - version = "0.64.4"; 30 + version = "0.64.5"; 31 31 32 32 src = fetchurl { 33 33 url = "https://github.com/buchen/portfolio/releases/download/${version}/PortfolioPerformance-${version}-linux.gtk.x86_64.tar.gz"; 34 - hash = "sha256-RjwZVJxPVbSlC0huGsreMdKDFV97bshoGA302u4N0Vk="; 34 + hash = "sha256-dF8w5JyUNypLyPqFC6dWLArPjykvy9BPZnHYs6lyYQM="; 35 35 }; 36 36 37 37 nativeBuildInputs = [
+2 -2
pkgs/applications/science/biology/dssp/default.nix
··· 19 19 20 20 stdenv.mkDerivation (finalAttrs: { 21 21 pname = "dssp"; 22 - version = "4.3.1"; 22 + version = "4.4.2"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "PDB-REDO"; 26 26 repo = "dssp"; 27 27 rev = "refs/tags/v${finalAttrs.version}"; 28 - hash = "sha256-TE2fus3KaGd9jo7cOWmJSooHjxTbcxEldR1Mui2SGP0="; 28 + hash = "sha256-Gic/rE/G24P5g4Uhf2lcvVa6i/4KGQzCpK4KlpjXcS0="; 29 29 }; 30 30 31 31 nativeBuildInputs = [
+1 -1
pkgs/applications/version-management/git-crypt/default.nix
··· 63 63 ''; 64 64 downloadPage = "https://github.com/AGWA/git-crypt/releases"; 65 65 license = licenses.gpl3; 66 - maintainers = with maintainers; [ dochang SuperSandro2000 ]; 66 + maintainers = with maintainers; [ dochang ]; 67 67 platforms = platforms.unix; 68 68 }; 69 69
+12 -10
pkgs/applications/version-management/git-interactive-rebase-tool/default.nix
··· 14 14 postPatch = '' 15 15 # unknown lint: `ffi_unwind_calls` 16 16 # note: the `ffi_unwind_calls` lint is unstable 17 - substituteInPlace src/main.rs src/{config,core,display,input,git,runtime,todo_file,view}/src/lib.rs \ 17 + substituteInPlace src/main.rs src/{config,core,display,input,git,runtime,todo_file,testutils,view}/src/lib.rs \ 18 18 --replace "ffi_unwind_calls," "" 19 19 ''; 20 20 ··· 27 27 28 28 buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ]; 29 29 30 - checkFlags = [ 31 - "--skip=external_editor::tests::edit_success" 32 - "--skip=external_editor::tests::editor_non_zero_exit" 33 - "--skip=external_editor::tests::empty_edit_abort_rebase" 34 - "--skip=external_editor::tests::empty_edit_error" 35 - "--skip=external_editor::tests::empty_edit_noop" 36 - "--skip=external_editor::tests::empty_edit_re_edit_rebase_file" 37 - "--skip=external_editor::tests::empty_edit_undo_and_edit" 30 + # Compilation during tests fails if this env var is not set. 31 + preCheck = "export GIRT_BUILD_GIT_HASH=${version}"; 32 + postCheck = "unset GIRT_BUILD_GIT_HASH"; 33 + cargoTestFlags = [ 34 + "--workspace" 35 + # build everything except for doctests which are currently broken because 36 + # `config::lib` expects the sourcetree to be a git repo. 37 + "--tests" 38 + "--lib" 39 + "--bins" 38 40 ]; 39 41 40 42 meta = with lib; { ··· 42 44 description = "Native cross platform full feature terminal based sequence editor for git interactive rebase"; 43 45 changelog = "https://github.com/MitMaro/git-interactive-rebase-tool/releases/tag/${version}"; 44 46 license = licenses.mit; 45 - maintainers = with maintainers; [ SuperSandro2000 zowoq ]; 47 + maintainers = with maintainers; [ SuperSandro2000 zowoq ma27 ]; 46 48 mainProgram = "interactive-rebase-tool"; 47 49 }; 48 50 }
+1 -1
pkgs/applications/version-management/gitlab-triage/default.nix
··· 11 11 description = "GitLab's issues and merge requests triage, automated!"; 12 12 homepage = "https://gitlab.com/gitlab-org/gitlab-triage"; 13 13 license = licenses.mit; 14 - maintainers = with maintainers; [ SuperSandro2000 ]; 14 + maintainers = with maintainers; [ ]; 15 15 }; 16 16 }
+1 -1
pkgs/applications/version-management/lab/default.nix
··· 36 36 description = "Lab wraps Git or Hub, making it simple to clone, fork, and interact with repositories on GitLab"; 37 37 homepage = "https://zaquestion.github.io/lab"; 38 38 license = licenses.cc0; 39 - maintainers = with maintainers; [ marsam dtzWill SuperSandro2000 ]; 39 + maintainers = with maintainers; [ marsam dtzWill ]; 40 40 }; 41 41 }
+1 -1
pkgs/applications/version-management/rs-git-fsmonitor/default.nix
··· 28 28 description = "A fast git core.fsmonitor hook written in Rust"; 29 29 homepage = "https://github.com/jgavris/rs-git-fsmonitor"; 30 30 license = licenses.mit; 31 - maintainers = [ maintainers.SuperSandro2000 ]; 31 + maintainers = [ ]; 32 32 }; 33 33 }
+103
pkgs/applications/video/multiviewer-for-f1/default.nix
··· 1 + { stdenvNoCC 2 + , fetchurl 3 + , lib 4 + , makeWrapper 5 + , autoPatchelfHook 6 + , dpkg 7 + , alsa-lib 8 + , at-spi2-atk 9 + , cairo 10 + , cups 11 + , dbus 12 + , expat 13 + , ffmpeg 14 + , glib 15 + , gtk3 16 + , libdrm 17 + , libudev0-shim 18 + , libxkbcommon 19 + , mesa 20 + , nspr 21 + , nss 22 + , pango 23 + , xorg 24 + }: 25 + 26 + let 27 + id = "117980724"; 28 + in 29 + stdenvNoCC.mkDerivation rec { 30 + pname = "multiviewer-for-f1"; 31 + version = "1.24.1"; 32 + 33 + src = fetchurl { 34 + url = "https://releases.multiviewer.dev/download/${id}/multiviewer-for-f1_${version}_amd64.deb"; 35 + sha256 = "sha256-uEcxDIWolouIUJ8Xuva3rtW51gfCddAwTGqOBnucmmY="; 36 + }; 37 + 38 + nativeBuildInputs = [ 39 + dpkg 40 + makeWrapper 41 + autoPatchelfHook 42 + ]; 43 + 44 + buildInputs = [ 45 + alsa-lib 46 + at-spi2-atk 47 + cairo 48 + cups 49 + dbus 50 + expat 51 + ffmpeg 52 + glib 53 + gtk3 54 + libdrm 55 + libxkbcommon 56 + mesa 57 + nspr 58 + nss 59 + pango 60 + xorg.libX11 61 + xorg.libXcomposite 62 + xorg.libxcb 63 + xorg.libXdamage 64 + xorg.libXext 65 + xorg.libXfixes 66 + xorg.libXrandr 67 + ]; 68 + 69 + dontBuild = true; 70 + dontConfigure = true; 71 + 72 + unpackPhase = '' 73 + runHook preUnpack 74 + 75 + # The deb file contains a setuid binary, so 'dpkg -x' doesn't work here 76 + dpkg --fsys-tarfile $src | tar --extract 77 + 78 + runHook postUnpack 79 + ''; 80 + 81 + installPhase = '' 82 + runHook preInstall 83 + 84 + mkdir -p $out/bin $out/share 85 + mv -t $out/share usr/share/* usr/lib/multiviewer-for-f1 86 + 87 + makeWrapper "$out/share/multiviewer-for-f1/MultiViewer for F1" $out/bin/multiviewer-for-f1 \ 88 + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform=wayland --enable-features=WaylandWindowDecorations}}" \ 89 + --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ libudev0-shim ]}:\"$out/share/Multiviewer for F1\"" 90 + 91 + runHook postInstall 92 + ''; 93 + 94 + meta = with lib; { 95 + description = "Unofficial desktop client for F1 TV®"; 96 + homepage = "https://multiviewer.app"; 97 + downloadPage = "https://multiviewer.app/download"; 98 + license = licenses.unfree; 99 + maintainers = with maintainers; [ babeuh ]; 100 + platforms = [ "x86_64-linux" ]; 101 + }; 102 + } 103 +
+8 -4
pkgs/applications/video/streamlink/default.nix
··· 6 6 7 7 python3Packages.buildPythonApplication rec { 8 8 pname = "streamlink"; 9 - version = "5.5.1"; 9 + version = "6.0.0"; 10 10 format = "pyproject"; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - hash = "sha256-srT+jWQ22+e87HjeLUu3gBVjiFYUNbYaGWMVbp/F+9A="; 14 + hash = "sha256-BeP+YOBtTz1D//LDBMha+07yVXdgBHfM4v4aVNHzwAw="; 15 15 }; 16 16 17 17 nativeCheckInputs = with python3Packages; [ ··· 20 20 requests-mock 21 21 freezegun 22 22 pytest-asyncio 23 + pytest-trio 23 24 ]; 24 25 25 26 nativeBuildInputs = with python3Packages; [ ··· 27 28 ]; 28 29 29 30 propagatedBuildInputs = (with python3Packages; [ 31 + certifi 30 32 isodate 31 33 lxml 32 34 pycountry 33 35 pycryptodome 34 36 pysocks 35 37 requests 36 - websocket-client 38 + trio 39 + trio-websocket 40 + typing-extensions 37 41 urllib3 38 - certifi 42 + websocket-client 39 43 ]) ++ [ 40 44 ffmpeg 41 45 ];
+1 -1
pkgs/applications/virtualization/docker/compose.nix
··· 34 34 description = "Docker CLI plugin to define and run multi-container applications with Docker"; 35 35 homepage = "https://github.com/docker/compose"; 36 36 license = licenses.asl20; 37 - maintainers = with maintainers; [ babariviere SuperSandro2000 ]; 37 + maintainers = with maintainers; [ babariviere ]; 38 38 }; 39 39 }
+1 -1
pkgs/development/libraries/SDL_audiolib/default.nix
··· 48 48 description = "Audio decoding, resampling and mixing library for SDL"; 49 49 homepage = "https://github.com/realnc/SDL_audiolib"; 50 50 license = licenses.lgpl3Plus; 51 - maintainers = with maintainers; [ SuperSandro2000 ]; 51 + maintainers = with maintainers; [ ]; 52 52 }; 53 53 }
+1 -1
pkgs/development/libraries/libargs/default.nix
··· 25 25 description = "A simple header-only C++ argument parser library"; 26 26 homepage = "https://github.com/Taywee/args"; 27 27 license = licenses.mit; 28 - maintainers = with maintainers; [ SuperSandro2000 ]; 28 + maintainers = with maintainers; [ ]; 29 29 }; 30 30 }
+1 -1
pkgs/development/libraries/libdatrie/default.nix
··· 41 41 description = "This is an implementation of double-array structure for representing trie"; 42 42 license = licenses.lgpl21Plus; 43 43 platforms = platforms.unix; 44 - maintainers = with maintainers; [ SuperSandro2000 ]; 44 + maintainers = with maintainers; [ ]; 45 45 }; 46 46 }
+1 -1
pkgs/development/libraries/libhsts/default.nix
··· 35 35 description = "Library to easily check a domain against the Chromium HSTS Preload list"; 36 36 homepage = "https://gitlab.com/rockdaboot/libhsts"; 37 37 license = with licenses; [ mit bsd3 ]; 38 - maintainers = with maintainers; [ SuperSandro2000 ]; 38 + maintainers = with maintainers; [ ]; 39 39 }; 40 40 }
+1 -1
pkgs/development/libraries/libthai/default.nix
··· 26 26 description = "Set of Thai language support routines"; 27 27 license = licenses.lgpl21Plus; 28 28 platforms = platforms.unix; 29 - maintainers = with maintainers; [ SuperSandro2000 ]; 29 + maintainers = with maintainers; [ ]; 30 30 }; 31 31 }
+2 -2
pkgs/development/libraries/nghttp3/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "nghttp3"; 9 - version = "0.12.0"; 9 + version = "0.13.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "ngtcp2"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - hash = "sha256-jbD//8BNqzX2T2F0JH+Vsoi/D+8HZIPXGnHoj3hzqPk="; 15 + hash = "sha256-ypoq+wXBaA5p5ZjRC8SNn9jHcMHHLJZLDLNOFMoua0g="; 16 16 }; 17 17 18 18 outputs = [ "out" "dev" "doc" ];
+1 -1
pkgs/development/libraries/opencl-clang/default.nix
··· 100 100 description = "A clang wrapper library with an OpenCL-oriented API and the ability to compile OpenCL C kernels to SPIR-V modules"; 101 101 license = licenses.ncsa; 102 102 platforms = platforms.all; 103 - maintainers = with maintainers; [ SuperSandro2000 ]; 103 + maintainers = with maintainers; [ ]; 104 104 }; 105 105 }; 106 106 in
-1
pkgs/development/node-packages/main-programs.nix
··· 16 16 "@antora/cli" = "antora"; 17 17 "@astrojs/language-server" = "astro-ls"; 18 18 "@babel/cli" = "babel"; 19 - "@bitwarden/cli" = "bw"; 20 19 "@commitlint/cli" = "commitlint"; 21 20 "@forge/cli" = "forge"; 22 21 "@gitbeaker/cli" = "gitbeaker";
-1
pkgs/development/node-packages/node-packages.json
··· 3 3 , "@antfu/ni" 4 4 , "@astrojs/language-server" 5 5 , "@babel/cli" 6 - , "@bitwarden/cli" 7 6 , "@commitlint/cli" 8 7 , "@commitlint/config-conventional" 9 8 , "@emacs-eask/cli"
-15
pkgs/development/node-packages/overrides.nix
··· 93 93 ''; 94 94 }; 95 95 96 - bitwarden-cli = prev."@bitwarden/cli".override { 97 - name = "bitwarden-cli"; 98 - nativeBuildInputs = with pkgs; [ 99 - pkg-config 100 - ] ++ lib.optionals stdenv.isDarwin [ 101 - darwin.apple_sdk.frameworks.CoreText 102 - ]; 103 - buildInputs = with pkgs; [ 104 - pixman 105 - cairo 106 - pango 107 - giflib 108 - ]; 109 - }; 110 - 111 96 bower2nix = prev.bower2nix.override { 112 97 nativeBuildInputs = [ pkgs.buildPackages.makeWrapper ]; 113 98 postInstall = ''
+2 -2
pkgs/development/ocaml-modules/ogg/default.nix
··· 2 2 3 3 buildDunePackage rec { 4 4 pname = "ogg"; 5 - version = "0.7.3"; 5 + version = "0.7.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "savonet"; 9 9 repo = "ocaml-ogg"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-D6tLKBSGfWBoMfQrWmamd8jo2AOphJV9xeSm+l06L5c="; 11 + sha256 = "sha256-S6rJw90c//a9d63weCLuOBoQwNqbpTb+lRytvHUOZuc="; 12 12 }; 13 13 14 14 minimalOCamlVersion = "4.08";
+5 -5
pkgs/development/php-packages/xdebug/default.nix
··· 1 1 { buildPecl, lib, fetchFromGitHub }: 2 2 3 3 let 4 - version = "3.2.1"; 4 + version = "3.2.2"; 5 5 in buildPecl { 6 6 inherit version; 7 7 ··· 11 11 owner = "xdebug"; 12 12 repo = "xdebug"; 13 13 rev = version; 14 - sha256 = "sha256-WKvMnn8yp6JBFu7xzPOt6sdg5JE8SRniLZbSBvi3ecQ="; 14 + hash = "sha256-zbgJw2oPzyUTK0UwLAqpShBi+toVsEQcjoG4tIBder0="; 15 15 }; 16 16 17 17 doCheck = true; ··· 19 19 20 20 zendExtension = true; 21 21 22 - meta = with lib; { 22 + meta = { 23 23 changelog = "https://github.com/xdebug/xdebug/releases/tag/${version}"; 24 24 description = "Provides functions for function traces and profiling"; 25 - license = licenses.php301; 26 25 homepage = "https://xdebug.org/"; 27 - maintainers = teams.php.members; 26 + license = lib.licenses.php301; 27 + maintainers = lib.teams.php.members; 28 28 }; 29 29 }
+1 -1
pkgs/development/python-modules/actdiag/default.nix
··· 45 45 homepage = "http://blockdiag.com/"; 46 46 license = licenses.asl20; 47 47 platforms = platforms.unix; 48 - maintainers = with maintainers; [ bjornfor SuperSandro2000 ]; 48 + maintainers = with maintainers; [ bjornfor ]; 49 49 }; 50 50 }
+2 -2
pkgs/development/python-modules/aliyun-python-sdk-iot/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "aliyun-python-sdk-iot"; 10 - version = "8.54.0"; 10 + version = "8.55.0"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.7"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - hash = "sha256-hNEtZQOfhnGNeXkR44fgDKrP+Nut0rqcLlnrDdcuOM4="; 17 + hash = "sha256-cLiOdXZpjZUVJ0O0rykM6GQH0pXaiMQp1zH6kuDLqOY="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/ansible/core.nix
··· 27 27 28 28 buildPythonPackage rec { 29 29 pname = "ansible-core"; 30 - version = "2.15.1"; 30 + version = "2.15.2"; 31 31 32 32 src = fetchPypi { 33 33 inherit pname version; 34 - hash = "sha256-7SjrSUPkgABO3Juh6b7peaBlDLL5Nyzkor1XKDjGDSs="; 34 + hash = "sha256-hCUbAB8vnAkUvu3/zxlSnnRaExCBWdH+J96eOmpjrFo="; 35 35 }; 36 36 37 37 # ansible_connection is already wrapped, so don't pass it through
+1 -1
pkgs/development/python-modules/arpeggio/default.nix
··· 27 27 description = "Recursive descent parser with memoization based on PEG grammars (aka Packrat parser)"; 28 28 homepage = "https://github.com/textX/Arpeggio"; 29 29 license = licenses.mit; 30 - maintainers = with maintainers; [ SuperSandro2000 ]; 30 + maintainers = with maintainers; [ ]; 31 31 }; 32 32 }
+1 -1
pkgs/development/python-modules/asgiref/default.nix
··· 44 44 description = "Reference ASGI adapters and channel layers"; 45 45 homepage = "https://github.com/django/asgiref"; 46 46 license = licenses.bsd3; 47 - maintainers = with maintainers; [ SuperSandro2000 ]; 47 + maintainers = with maintainers; [ ]; 48 48 }; 49 49 }
+1 -1
pkgs/development/python-modules/asn1tools/default.nix
··· 42 42 description = "ASN.1 parsing, encoding and decoding"; 43 43 homepage = "https://github.com/eerimoq/asn1tools"; 44 44 license = licenses.mit; 45 - maintainers = with maintainers; [ SuperSandro2000 ]; 45 + maintainers = with maintainers; [ ]; 46 46 }; 47 47 }
+1 -1
pkgs/development/python-modules/aspell-python/default.nix
··· 54 54 description = "Python wrapper for aspell (C extension and Python version)"; 55 55 homepage = "https://github.com/WojciechMula/aspell-python"; 56 56 license = licenses.bsd3; 57 - maintainers = with maintainers; [ SuperSandro2000 ]; 57 + maintainers = with maintainers; [ ]; 58 58 }; 59 59 }
+1 -1
pkgs/development/python-modules/astroid/default.nix
··· 58 58 description = "An abstract syntax tree for Python with inference support"; 59 59 homepage = "https://github.com/PyCQA/astroid"; 60 60 license = licenses.lgpl21Plus; 61 - maintainers = with maintainers; [ SuperSandro2000 ]; 61 + maintainers = with maintainers; [ ]; 62 62 }; 63 63 }
+1 -1
pkgs/development/python-modules/autobahn/default.nix
··· 108 108 description = "WebSocket and WAMP in Python for Twisted and asyncio"; 109 109 homepage = "https://crossbar.io/autobahn"; 110 110 license = licenses.mit; 111 - maintainers = with maintainers; [ SuperSandro2000 ]; 111 + maintainers = with maintainers; [ ]; 112 112 }; 113 113 }
+1 -1
pkgs/development/python-modules/autocommand/default.nix
··· 26 26 description = " Autocommand turns a python function into a CLI program "; 27 27 homepage = "https://github.com/Lucretiel/autocommand"; 28 28 license = licenses.lgpl3; 29 - maintainers = with maintainers; [ SuperSandro2000 ]; 29 + maintainers = with maintainers; [ ]; 30 30 }; 31 31 }
+1 -1
pkgs/development/python-modules/automat/default.nix
··· 43 43 homepage = "https://github.com/glyph/Automat"; 44 44 description = "Self-service finite-state machines for the programmer on the go"; 45 45 license = licenses.mit; 46 - maintainers = with maintainers; [ SuperSandro2000 ]; 46 + maintainers = with maintainers; [ ]; 47 47 }; 48 48 }; in automat
+1 -1
pkgs/development/python-modules/babel/default.nix
··· 52 52 changelog = "https://github.com/python-babel/babel/releases/tag/v${version}"; 53 53 description = "Collection of internationalizing tools"; 54 54 license = licenses.bsd3; 55 - maintainers = with maintainers; [ SuperSandro2000 ]; 55 + maintainers = with maintainers; [ ]; 56 56 }; 57 57 }
+1 -1
pkgs/development/python-modules/backports-datetime-fromisoformat/default.nix
··· 31 31 description = "Backport of Python 3.11's datetime.fromisoformat"; 32 32 homepage = "https://github.com/movermeyer/backports.datetime_fromisoformat"; 33 33 license = licenses.mit; 34 - maintainers = with maintainers; [ SuperSandro2000 ]; 34 + maintainers = with maintainers; [ ]; 35 35 }; 36 36 }
+1 -1
pkgs/development/python-modules/backports-entry-points-selectable/default.nix
··· 39 39 description = "Compatibility shim providing selectable entry points for older implementations"; 40 40 homepage = "https://github.com/jaraco/backports.entry_points_selectable"; 41 41 license = licenses.mit; 42 - maintainers = with maintainers; [ SuperSandro2000 ]; 42 + maintainers = with maintainers; [ ]; 43 43 }; 44 44 }
+1 -1
pkgs/development/python-modules/backports_unittest-mock/default.nix
··· 21 21 description = "Provides a function install() which makes the mock module"; 22 22 homepage = "https://github.com/jaraco/backports.unittest_mock"; 23 23 license = licenses.mit; 24 - maintainers = with maintainers; [ SuperSandro2000 ]; 24 + maintainers = with maintainers; [ ]; 25 25 }; 26 26 }
+1 -1
pkgs/development/python-modules/bitbox02/default.nix
··· 45 45 homepage = "https://github.com/digitalbitbox/bitbox02-firmware/"; 46 46 changelog = "https://github.com/digitalbitbox/bitbox02-firmware/blob/py-bitbox02-${version}/CHANGELOG.md"; 47 47 license = licenses.asl20; 48 - maintainers = with maintainers; [ SuperSandro2000 ]; 48 + maintainers = with maintainers; [ ]; 49 49 }; 50 50 }
+1 -1
pkgs/development/python-modules/blinker/default.nix
··· 21 21 homepage = "https://pythonhosted.org/blinker/"; 22 22 description = "Fast, simple object-to-object and broadcast signaling"; 23 23 license = licenses.mit; 24 - maintainers = with maintainers; [ SuperSandro2000 ]; 24 + maintainers = with maintainers; [ ]; 25 25 }; 26 26 }
+1 -1
pkgs/development/python-modules/blockdiag/default.nix
··· 61 61 homepage = "http://blockdiag.com/"; 62 62 license = licenses.asl20; 63 63 platforms = platforms.unix; 64 - maintainers = with maintainers; [ bjornfor SuperSandro2000 ]; 64 + maintainers = with maintainers; [ bjornfor ]; 65 65 }; 66 66 }
+1 -1
pkgs/development/python-modules/bracex/default.nix
··· 29 29 description = "Bash style brace expansion for Python"; 30 30 homepage = "https://github.com/facelessuser/bracex"; 31 31 license = licenses.mit; 32 - maintainers = with maintainers; [ SuperSandro2000 ]; 32 + maintainers = with maintainers; [ ]; 33 33 }; 34 34 }
+1 -1
pkgs/development/python-modules/brotli/default.nix
··· 32 32 homepage = "https://github.com/google/brotli"; 33 33 description = "Generic-purpose lossless compression algorithm"; 34 34 license = licenses.mit; 35 - maintainers = with maintainers; [ SuperSandro2000 ]; 35 + maintainers = with maintainers; [ ]; 36 36 }; 37 37 }
+1 -1
pkgs/development/python-modules/cairocffi/default.nix
··· 75 75 meta = with lib; { 76 76 homepage = "https://github.com/SimonSapin/cairocffi"; 77 77 license = licenses.bsd3; 78 - maintainers = with maintainers; [ SuperSandro2000 ]; 78 + maintainers = with maintainers; [ ]; 79 79 description = "cffi-based cairo bindings for Python"; 80 80 }; 81 81 }
+1 -1
pkgs/development/python-modules/cairosvg/default.nix
··· 46 46 homepage = "https://cairosvg.org"; 47 47 license = licenses.lgpl3Plus; 48 48 description = "SVG converter based on Cairo"; 49 - maintainers = with maintainers; [ SuperSandro2000 ]; 49 + maintainers = with maintainers; [ ]; 50 50 }; 51 51 }
+1 -1
pkgs/development/python-modules/certifi/default.nix
··· 47 47 homepage = "https://github.com/certifi/python-certifi"; 48 48 description = "Python package for providing Mozilla's CA Bundle"; 49 49 license = licenses.isc; 50 - maintainers = with maintainers; [ koral SuperSandro2000 ]; 50 + maintainers = with maintainers; [ koral ]; 51 51 }; 52 52 }
+4 -4
pkgs/development/python-modules/cheroot/default.nix
··· 2 2 , stdenv 3 3 , buildPythonPackage 4 4 , fetchPypi 5 - , jaraco_functools 6 - , jaraco_text 5 + , jaraco-functools 6 + , jaraco-text 7 7 , more-itertools 8 8 , portend 9 9 , pypytools ··· 35 35 ]; 36 36 37 37 propagatedBuildInputs = [ 38 - jaraco_functools 38 + jaraco-functools 39 39 more-itertools 40 40 six 41 41 ]; 42 42 43 43 nativeCheckInputs = [ 44 - jaraco_text 44 + jaraco-text 45 45 portend 46 46 pypytools 47 47 pytest-mock
+2 -2
pkgs/development/python-modules/cherrypy/default.nix
··· 3 3 , buildPythonPackage 4 4 , cheroot 5 5 , fetchPypi 6 - , jaraco_collections 6 + , jaraco-collections 7 7 , more-itertools 8 8 , objgraph 9 9 , path ··· 53 53 portend 54 54 more-itertools 55 55 zc_lockfile 56 - jaraco_collections 56 + jaraco-collections 57 57 ]; 58 58 59 59 nativeCheckInputs = [
+1 -1
pkgs/development/python-modules/cliche/default.nix
··· 32 32 description = "Build a simple command-line interface from your functions :computer:"; 33 33 homepage = "https://github.com/kootenpv/cliche"; 34 34 license = licenses.mit; 35 - maintainers = with maintainers; [ SuperSandro2000 ]; 35 + maintainers = with maintainers; [ ]; 36 36 }; 37 37 }
+1 -1
pkgs/development/python-modules/click/default.nix
··· 43 43 composable way, with as little code as necessary. 44 44 ''; 45 45 license = licenses.bsd3; 46 - maintainers = with maintainers; [ SuperSandro2000 ]; 46 + maintainers = with maintainers; [ ]; 47 47 }; 48 48 }
+1 -1
pkgs/development/python-modules/clintermission/default.nix
··· 35 35 homepage = "https://github.com/sebageek/clintermission"; 36 36 changelog = "https://github.com/sebageek/clintermission/releases/tag/v${version}"; 37 37 license = licenses.asl20; 38 - maintainers = with maintainers; [ SuperSandro2000 ]; 38 + maintainers = with maintainers; [ ]; 39 39 }; 40 40 }
+1 -1
pkgs/development/python-modules/coincurve/default.nix
··· 67 67 description = "Cross-platform bindings for libsecp256k1"; 68 68 homepage = "https://github.com/ofek/coincurve"; 69 69 license = with licenses; [ asl20 mit ]; 70 - maintainers = with maintainers; [ SuperSandro2000 ]; 70 + maintainers = with maintainers; [ ]; 71 71 }; 72 72 }
+1 -1
pkgs/development/python-modules/commentjson/default.nix
··· 29 29 description = "Add JavaScript or Python style comments in JSON"; 30 30 homepage = "https://github.com/vaidik/commentjson/"; 31 31 license = licenses.mit; 32 - maintainers = with maintainers; [ SuperSandro2000 ]; 32 + maintainers = with maintainers; [ ]; 33 33 }; 34 34 }
+1 -1
pkgs/development/python-modules/dateutils/default.nix
··· 20 20 description = "Utilities for working with datetime objects."; 21 21 homepage = "https://github.com/jmcantrell/python-dateutils"; 22 22 license = licenses.bsd0; 23 - maintainers = with maintainers; [ SuperSandro2000 ]; 23 + maintainers = with maintainers; [ ]; 24 24 }; 25 25 }
+1 -1
pkgs/development/python-modules/db-dtypes/default.nix
··· 43 43 homepage = "https://github.com/googleapis/python-db-dtypes-pandas"; 44 44 changelog = "https://github.com/googleapis/python-db-dtypes-pandas/blob/v${version}/CHANGELOG.md"; 45 45 license = licenses.asl20; 46 - maintainers = with maintainers; [ SuperSandro2000 ]; 46 + maintainers = with maintainers; [ ]; 47 47 }; 48 48 }
+60
pkgs/development/python-modules/dbt-bigquery/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , agate 5 + , dbt-core 6 + , google-cloud-bigquery 7 + , google-cloud-storage 8 + , google-cloud-dataproc 9 + , pytestCheckHook 10 + , pythonRelaxDepsHook 11 + }: 12 + 13 + buildPythonPackage rec { 14 + pname = "dbt-bigquery"; 15 + version = "1.5.3"; 16 + format = "setuptools"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "dbt-labs"; 20 + repo = pname; 21 + rev = "refs/tags/v${version}"; 22 + hash = "sha256-mzqUdT+dI7U0tHHcr0joIB1UCfKXrDdqhtVFShjIKus="; 23 + }; 24 + 25 + nativeBuildInputs = [ 26 + pythonRelaxDepsHook 27 + ]; 28 + 29 + pythonRelaxDeps = [ 30 + "agate" 31 + ]; 32 + 33 + propagatedBuildInputs = [ 34 + agate 35 + dbt-core 36 + google-cloud-bigquery 37 + google-cloud-storage 38 + google-cloud-dataproc 39 + ]; 40 + 41 + nativeCheckInputs = [ 42 + pytestCheckHook 43 + ]; 44 + 45 + pytestFlagsArray = [ 46 + "tests/unit" 47 + ]; 48 + 49 + pythonImportsCheck = [ 50 + "dbt.adapters.bigquery" 51 + ]; 52 + 53 + meta = with lib; { 54 + description = "Plugin enabling dbt to operate on a BigQuery database"; 55 + homepage = "https://github.com/dbt-labs/dbt-bigquery"; 56 + changelog = "https://github.com/dbt-labs/dbt-bigquery/blob/${version}/CHANGELOG.md"; 57 + license = licenses.asl20; 58 + maintainers = with maintainers; [ tjni ]; 59 + }; 60 + }
+113
pkgs/development/python-modules/dbt-core/default.nix
··· 1 + { lib 2 + , python3 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 + , agate 6 + , cffi 7 + , click 8 + , colorama 9 + , dbt-extractor 10 + , hologram 11 + , idna 12 + , isodate 13 + , jinja2 14 + , logbook 15 + , mashumaro 16 + , minimal-snowplow-tracker 17 + , networkx 18 + , packaging 19 + , pathspec 20 + , protobuf 21 + , pythonRelaxDepsHook 22 + , pytz 23 + , pyyaml 24 + , requests 25 + , sqlparse 26 + , typing-extensions 27 + , urllib3 28 + , werkzeug 29 + }: 30 + 31 + buildPythonPackage rec { 32 + pname = "dbt-core"; 33 + version = "1.5.3"; 34 + format = "setuptools"; 35 + 36 + src = fetchFromGitHub { 37 + owner = "dbt-labs"; 38 + repo = pname; 39 + rev = "refs/tags/v${version}"; 40 + hash = "sha256-ZgP11fVMtXpzo9QaTkejvKl0LzCAkIyGBMcOquBirxQ="; 41 + }; 42 + 43 + sourceRoot = "source/core"; 44 + 45 + nativeBuildInputs = [ 46 + pythonRelaxDepsHook 47 + ]; 48 + 49 + pythonRelaxDeps = [ 50 + "agate" 51 + "click" 52 + "mashumaro" 53 + "networkx" 54 + ]; 55 + 56 + propagatedBuildInputs = [ 57 + agate 58 + cffi 59 + click 60 + colorama 61 + dbt-extractor 62 + hologram 63 + idna 64 + isodate 65 + jinja2 66 + logbook 67 + mashumaro 68 + minimal-snowplow-tracker 69 + networkx 70 + packaging 71 + pathspec 72 + protobuf 73 + pytz 74 + pyyaml 75 + requests 76 + sqlparse 77 + typing-extensions 78 + urllib3 79 + werkzeug 80 + ] ++ mashumaro.optional-dependencies.msgpack; 81 + 82 + # tests exist for the dbt tool but not for this package specifically 83 + doCheck = false; 84 + 85 + passthru = { 86 + withAdapters = python3.pkgs.callPackage ./with-adapters.nix { }; 87 + }; 88 + 89 + meta = with lib; { 90 + description = "Enables data analysts and engineers to transform their data using the same practices that software engineers use to build applications"; 91 + longDescription = '' 92 + The dbt tool needs adapters to data sources in order to work. The available 93 + adapters are: 94 + 95 + dbt-bigquery 96 + dbt-postgres 97 + dbt-redshift 98 + dbt-snowflake 99 + 100 + An example of building this package with a few adapters: 101 + 102 + dbt.withAdapters (adapters: [ 103 + adapters.dbt-bigquery 104 + adapters.dbt-postgres 105 + ]) 106 + ''; 107 + homepage = "https://github.com/dbt-labs/dbt-core"; 108 + changelog = "https://github.com/dbt-labs/dbt-core/blob/v${version}/CHANGELOG.md"; 109 + license = licenses.asl20; 110 + maintainers = with maintainers; [ mausch tjni ]; 111 + mainProgram = "dbt"; 112 + }; 113 + }
+18
pkgs/development/python-modules/dbt-core/with-adapters.nix
··· 1 + { python3 2 + , dbt-bigquery 3 + , dbt-core 4 + , dbt-postgres 5 + , dbt-redshift 6 + , dbt-snowflake 7 + }: 8 + let 9 + adapters = { 10 + inherit dbt-bigquery dbt-postgres dbt-redshift dbt-snowflake; 11 + }; 12 + in 13 + adapterFun: (python3.buildEnv.override { 14 + extraLibs = [ dbt-core ] ++ (adapterFun adapters); 15 + ignoreCollisions = true; 16 + }).overrideAttrs { 17 + meta.mainProgram = dbt-core.meta.mainProgram; 18 + }
+531
pkgs/development/python-modules/dbt-extractor/Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "aho-corasick" 7 + version = "0.7.18" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" 10 + dependencies = [ 11 + "memchr", 12 + ] 13 + 14 + [[package]] 15 + name = "autocfg" 16 + version = "1.0.1" 17 + source = "registry+https://github.com/rust-lang/crates.io-index" 18 + checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" 19 + 20 + [[package]] 21 + name = "bitflags" 22 + version = "1.3.2" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 25 + 26 + [[package]] 27 + name = "cc" 28 + version = "1.0.69" 29 + source = "registry+https://github.com/rust-lang/crates.io-index" 30 + checksum = "e70cc2f62c6ce1868963827bd677764c62d07c3d9a3e1fb1177ee1a9ab199eb2" 31 + 32 + [[package]] 33 + name = "cfg-if" 34 + version = "1.0.0" 35 + source = "registry+https://github.com/rust-lang/crates.io-index" 36 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 37 + 38 + [[package]] 39 + name = "crossbeam-channel" 40 + version = "0.5.1" 41 + source = "registry+https://github.com/rust-lang/crates.io-index" 42 + checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4" 43 + dependencies = [ 44 + "cfg-if", 45 + "crossbeam-utils", 46 + ] 47 + 48 + [[package]] 49 + name = "crossbeam-deque" 50 + version = "0.8.1" 51 + source = "registry+https://github.com/rust-lang/crates.io-index" 52 + checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e" 53 + dependencies = [ 54 + "cfg-if", 55 + "crossbeam-epoch", 56 + "crossbeam-utils", 57 + ] 58 + 59 + [[package]] 60 + name = "crossbeam-epoch" 61 + version = "0.9.5" 62 + source = "registry+https://github.com/rust-lang/crates.io-index" 63 + checksum = "4ec02e091aa634e2c3ada4a392989e7c3116673ef0ac5b72232439094d73b7fd" 64 + dependencies = [ 65 + "cfg-if", 66 + "crossbeam-utils", 67 + "lazy_static", 68 + "memoffset", 69 + "scopeguard", 70 + ] 71 + 72 + [[package]] 73 + name = "crossbeam-utils" 74 + version = "0.8.5" 75 + source = "registry+https://github.com/rust-lang/crates.io-index" 76 + checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db" 77 + dependencies = [ 78 + "cfg-if", 79 + "lazy_static", 80 + ] 81 + 82 + [[package]] 83 + name = "dbt-extractor" 84 + version = "0.4.1" 85 + dependencies = [ 86 + "pyo3", 87 + "quickcheck", 88 + "quickcheck_macros", 89 + "rayon", 90 + "thiserror", 91 + "tree-sitter", 92 + "tree-sitter-jinja2", 93 + ] 94 + 95 + [[package]] 96 + name = "either" 97 + version = "1.6.1" 98 + source = "registry+https://github.com/rust-lang/crates.io-index" 99 + checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" 100 + 101 + [[package]] 102 + name = "env_logger" 103 + version = "0.8.4" 104 + source = "registry+https://github.com/rust-lang/crates.io-index" 105 + checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3" 106 + dependencies = [ 107 + "log", 108 + "regex", 109 + ] 110 + 111 + [[package]] 112 + name = "getrandom" 113 + version = "0.2.3" 114 + source = "registry+https://github.com/rust-lang/crates.io-index" 115 + checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753" 116 + dependencies = [ 117 + "cfg-if", 118 + "libc", 119 + "wasi", 120 + ] 121 + 122 + [[package]] 123 + name = "hermit-abi" 124 + version = "0.1.19" 125 + source = "registry+https://github.com/rust-lang/crates.io-index" 126 + checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 127 + dependencies = [ 128 + "libc", 129 + ] 130 + 131 + [[package]] 132 + name = "indoc" 133 + version = "0.3.6" 134 + source = "registry+https://github.com/rust-lang/crates.io-index" 135 + checksum = "47741a8bc60fb26eb8d6e0238bbb26d8575ff623fdc97b1a2c00c050b9684ed8" 136 + dependencies = [ 137 + "indoc-impl", 138 + "proc-macro-hack", 139 + ] 140 + 141 + [[package]] 142 + name = "indoc-impl" 143 + version = "0.3.6" 144 + source = "registry+https://github.com/rust-lang/crates.io-index" 145 + checksum = "ce046d161f000fffde5f432a0d034d0341dc152643b2598ed5bfce44c4f3a8f0" 146 + dependencies = [ 147 + "proc-macro-hack", 148 + "proc-macro2", 149 + "quote", 150 + "syn", 151 + "unindent", 152 + ] 153 + 154 + [[package]] 155 + name = "instant" 156 + version = "0.1.10" 157 + source = "registry+https://github.com/rust-lang/crates.io-index" 158 + checksum = "bee0328b1209d157ef001c94dd85b4f8f64139adb0eac2659f4b08382b2f474d" 159 + dependencies = [ 160 + "cfg-if", 161 + ] 162 + 163 + [[package]] 164 + name = "lazy_static" 165 + version = "1.4.0" 166 + source = "registry+https://github.com/rust-lang/crates.io-index" 167 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 168 + 169 + [[package]] 170 + name = "libc" 171 + version = "0.2.101" 172 + source = "registry+https://github.com/rust-lang/crates.io-index" 173 + checksum = "3cb00336871be5ed2c8ed44b60ae9959dc5b9f08539422ed43f09e34ecaeba21" 174 + 175 + [[package]] 176 + name = "lock_api" 177 + version = "0.4.4" 178 + source = "registry+https://github.com/rust-lang/crates.io-index" 179 + checksum = "0382880606dff6d15c9476c416d18690b72742aa7b605bb6dd6ec9030fbf07eb" 180 + dependencies = [ 181 + "scopeguard", 182 + ] 183 + 184 + [[package]] 185 + name = "log" 186 + version = "0.4.14" 187 + source = "registry+https://github.com/rust-lang/crates.io-index" 188 + checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" 189 + dependencies = [ 190 + "cfg-if", 191 + ] 192 + 193 + [[package]] 194 + name = "memchr" 195 + version = "2.4.1" 196 + source = "registry+https://github.com/rust-lang/crates.io-index" 197 + checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" 198 + 199 + [[package]] 200 + name = "memoffset" 201 + version = "0.6.4" 202 + source = "registry+https://github.com/rust-lang/crates.io-index" 203 + checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9" 204 + dependencies = [ 205 + "autocfg", 206 + ] 207 + 208 + [[package]] 209 + name = "num_cpus" 210 + version = "1.13.0" 211 + source = "registry+https://github.com/rust-lang/crates.io-index" 212 + checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3" 213 + dependencies = [ 214 + "hermit-abi", 215 + "libc", 216 + ] 217 + 218 + [[package]] 219 + name = "once_cell" 220 + version = "1.9.0" 221 + source = "registry+https://github.com/rust-lang/crates.io-index" 222 + checksum = "da32515d9f6e6e489d7bc9d84c71b060db7247dc035bbe44eac88cf87486d8d5" 223 + 224 + [[package]] 225 + name = "parking_lot" 226 + version = "0.11.1" 227 + source = "registry+https://github.com/rust-lang/crates.io-index" 228 + checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb" 229 + dependencies = [ 230 + "instant", 231 + "lock_api", 232 + "parking_lot_core", 233 + ] 234 + 235 + [[package]] 236 + name = "parking_lot_core" 237 + version = "0.8.3" 238 + source = "registry+https://github.com/rust-lang/crates.io-index" 239 + checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018" 240 + dependencies = [ 241 + "cfg-if", 242 + "instant", 243 + "libc", 244 + "redox_syscall", 245 + "smallvec", 246 + "winapi", 247 + ] 248 + 249 + [[package]] 250 + name = "paste" 251 + version = "0.1.18" 252 + source = "registry+https://github.com/rust-lang/crates.io-index" 253 + checksum = "45ca20c77d80be666aef2b45486da86238fabe33e38306bd3118fe4af33fa880" 254 + dependencies = [ 255 + "paste-impl", 256 + "proc-macro-hack", 257 + ] 258 + 259 + [[package]] 260 + name = "paste-impl" 261 + version = "0.1.18" 262 + source = "registry+https://github.com/rust-lang/crates.io-index" 263 + checksum = "d95a7db200b97ef370c8e6de0088252f7e0dfff7d047a28528e47456c0fc98b6" 264 + dependencies = [ 265 + "proc-macro-hack", 266 + ] 267 + 268 + [[package]] 269 + name = "proc-macro-hack" 270 + version = "0.5.19" 271 + source = "registry+https://github.com/rust-lang/crates.io-index" 272 + checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" 273 + 274 + [[package]] 275 + name = "proc-macro2" 276 + version = "1.0.28" 277 + source = "registry+https://github.com/rust-lang/crates.io-index" 278 + checksum = "5c7ed8b8c7b886ea3ed7dde405212185f423ab44682667c8c6dd14aa1d9f6612" 279 + dependencies = [ 280 + "unicode-xid", 281 + ] 282 + 283 + [[package]] 284 + name = "pyo3" 285 + version = "0.15.1" 286 + source = "registry+https://github.com/rust-lang/crates.io-index" 287 + checksum = "7cf01dbf1c05af0a14c7779ed6f3aa9deac9c3419606ac9de537a2d649005720" 288 + dependencies = [ 289 + "cfg-if", 290 + "indoc", 291 + "libc", 292 + "parking_lot", 293 + "paste", 294 + "pyo3-build-config", 295 + "pyo3-macros", 296 + "unindent", 297 + ] 298 + 299 + [[package]] 300 + name = "pyo3-build-config" 301 + version = "0.15.1" 302 + source = "registry+https://github.com/rust-lang/crates.io-index" 303 + checksum = "dbf9e4d128bfbddc898ad3409900080d8d5095c379632fbbfbb9c8cfb1fb852b" 304 + dependencies = [ 305 + "once_cell", 306 + ] 307 + 308 + [[package]] 309 + name = "pyo3-macros" 310 + version = "0.15.1" 311 + source = "registry+https://github.com/rust-lang/crates.io-index" 312 + checksum = "67701eb32b1f9a9722b4bc54b548ff9d7ebfded011c12daece7b9063be1fd755" 313 + dependencies = [ 314 + "pyo3-macros-backend", 315 + "quote", 316 + "syn", 317 + ] 318 + 319 + [[package]] 320 + name = "pyo3-macros-backend" 321 + version = "0.15.1" 322 + source = "registry+https://github.com/rust-lang/crates.io-index" 323 + checksum = "f44f09e825ee49a105f2c7b23ebee50886a9aee0746f4dd5a704138a64b0218a" 324 + dependencies = [ 325 + "proc-macro2", 326 + "pyo3-build-config", 327 + "quote", 328 + "syn", 329 + ] 330 + 331 + [[package]] 332 + name = "quickcheck" 333 + version = "1.0.3" 334 + source = "registry+https://github.com/rust-lang/crates.io-index" 335 + checksum = "588f6378e4dd99458b60ec275b4477add41ce4fa9f64dcba6f15adccb19b50d6" 336 + dependencies = [ 337 + "env_logger", 338 + "log", 339 + "rand", 340 + ] 341 + 342 + [[package]] 343 + name = "quickcheck_macros" 344 + version = "1.0.0" 345 + source = "registry+https://github.com/rust-lang/crates.io-index" 346 + checksum = "b22a693222d716a9587786f37ac3f6b4faedb5b80c23914e7303ff5a1d8016e9" 347 + dependencies = [ 348 + "proc-macro2", 349 + "quote", 350 + "syn", 351 + ] 352 + 353 + [[package]] 354 + name = "quote" 355 + version = "1.0.9" 356 + source = "registry+https://github.com/rust-lang/crates.io-index" 357 + checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7" 358 + dependencies = [ 359 + "proc-macro2", 360 + ] 361 + 362 + [[package]] 363 + name = "rand" 364 + version = "0.8.4" 365 + source = "registry+https://github.com/rust-lang/crates.io-index" 366 + checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8" 367 + dependencies = [ 368 + "rand_core", 369 + ] 370 + 371 + [[package]] 372 + name = "rand_core" 373 + version = "0.6.3" 374 + source = "registry+https://github.com/rust-lang/crates.io-index" 375 + checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" 376 + dependencies = [ 377 + "getrandom", 378 + ] 379 + 380 + [[package]] 381 + name = "rayon" 382 + version = "1.5.1" 383 + source = "registry+https://github.com/rust-lang/crates.io-index" 384 + checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90" 385 + dependencies = [ 386 + "autocfg", 387 + "crossbeam-deque", 388 + "either", 389 + "rayon-core", 390 + ] 391 + 392 + [[package]] 393 + name = "rayon-core" 394 + version = "1.9.1" 395 + source = "registry+https://github.com/rust-lang/crates.io-index" 396 + checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e" 397 + dependencies = [ 398 + "crossbeam-channel", 399 + "crossbeam-deque", 400 + "crossbeam-utils", 401 + "lazy_static", 402 + "num_cpus", 403 + ] 404 + 405 + [[package]] 406 + name = "redox_syscall" 407 + version = "0.2.10" 408 + source = "registry+https://github.com/rust-lang/crates.io-index" 409 + checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff" 410 + dependencies = [ 411 + "bitflags", 412 + ] 413 + 414 + [[package]] 415 + name = "regex" 416 + version = "1.5.4" 417 + source = "registry+https://github.com/rust-lang/crates.io-index" 418 + checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461" 419 + dependencies = [ 420 + "aho-corasick", 421 + "memchr", 422 + "regex-syntax", 423 + ] 424 + 425 + [[package]] 426 + name = "regex-syntax" 427 + version = "0.6.25" 428 + source = "registry+https://github.com/rust-lang/crates.io-index" 429 + checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" 430 + 431 + [[package]] 432 + name = "scopeguard" 433 + version = "1.1.0" 434 + source = "registry+https://github.com/rust-lang/crates.io-index" 435 + checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 436 + 437 + [[package]] 438 + name = "smallvec" 439 + version = "1.6.1" 440 + source = "registry+https://github.com/rust-lang/crates.io-index" 441 + checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e" 442 + 443 + [[package]] 444 + name = "syn" 445 + version = "1.0.75" 446 + source = "registry+https://github.com/rust-lang/crates.io-index" 447 + checksum = "b7f58f7e8eaa0009c5fec437aabf511bd9933e4b2d7407bd05273c01a8906ea7" 448 + dependencies = [ 449 + "proc-macro2", 450 + "quote", 451 + "unicode-xid", 452 + ] 453 + 454 + [[package]] 455 + name = "thiserror" 456 + version = "1.0.26" 457 + source = "registry+https://github.com/rust-lang/crates.io-index" 458 + checksum = "93119e4feac1cbe6c798c34d3a53ea0026b0b1de6a120deef895137c0529bfe2" 459 + dependencies = [ 460 + "thiserror-impl", 461 + ] 462 + 463 + [[package]] 464 + name = "thiserror-impl" 465 + version = "1.0.26" 466 + source = "registry+https://github.com/rust-lang/crates.io-index" 467 + checksum = "060d69a0afe7796bf42e9e2ff91f5ee691fb15c53d38b4b62a9a53eb23164745" 468 + dependencies = [ 469 + "proc-macro2", 470 + "quote", 471 + "syn", 472 + ] 473 + 474 + [[package]] 475 + name = "tree-sitter" 476 + version = "0.19.5" 477 + source = "registry+https://github.com/rust-lang/crates.io-index" 478 + checksum = "ad726ec26496bf4c083fff0f43d4eb3a2ad1bba305323af5ff91383c0b6ecac0" 479 + dependencies = [ 480 + "cc", 481 + "regex", 482 + ] 483 + 484 + [[package]] 485 + name = "tree-sitter-jinja2" 486 + version = "0.1.0" 487 + source = "git+https://github.com/dbt-labs/tree-sitter-jinja2?tag=v0.1.0#52da7b0b1480b23381ea84cf5ea3bf058dd6d8c4" 488 + dependencies = [ 489 + "cc", 490 + "tree-sitter", 491 + ] 492 + 493 + [[package]] 494 + name = "unicode-xid" 495 + version = "0.2.2" 496 + source = "registry+https://github.com/rust-lang/crates.io-index" 497 + checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" 498 + 499 + [[package]] 500 + name = "unindent" 501 + version = "0.1.7" 502 + source = "registry+https://github.com/rust-lang/crates.io-index" 503 + checksum = "f14ee04d9415b52b3aeab06258a3f07093182b88ba0f9b8d203f211a7a7d41c7" 504 + 505 + [[package]] 506 + name = "wasi" 507 + version = "0.10.2+wasi-snapshot-preview1" 508 + source = "registry+https://github.com/rust-lang/crates.io-index" 509 + checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" 510 + 511 + [[package]] 512 + name = "winapi" 513 + version = "0.3.9" 514 + source = "registry+https://github.com/rust-lang/crates.io-index" 515 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 516 + dependencies = [ 517 + "winapi-i686-pc-windows-gnu", 518 + "winapi-x86_64-pc-windows-gnu", 519 + ] 520 + 521 + [[package]] 522 + name = "winapi-i686-pc-windows-gnu" 523 + version = "0.4.0" 524 + source = "registry+https://github.com/rust-lang/crates.io-index" 525 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 526 + 527 + [[package]] 528 + name = "winapi-x86_64-pc-windows-gnu" 529 + version = "0.4.0" 530 + source = "registry+https://github.com/rust-lang/crates.io-index" 531 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
+49
pkgs/development/python-modules/dbt-extractor/default.nix
··· 1 + { stdenv 2 + , lib 3 + , buildPythonPackage 4 + , fetchPypi 5 + , rustPlatform 6 + , libiconv 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "dbt-extractor"; 11 + version = "0.4.1"; 12 + format = "setuptools"; 13 + 14 + src = fetchPypi { 15 + pname = "dbt_extractor"; 16 + inherit version; 17 + hash = "sha256-dbHGZWmewPH/zhuj13b3386AIVbyLnCnucjwtNfoD0I="; 18 + }; 19 + 20 + cargoDeps = rustPlatform.importCargoLock { 21 + lockFile = ./Cargo.lock; 22 + outputHashes = { 23 + "tree-sitter-jinja2-0.1.0" = "sha256-lzA2iq4AK0iNwkLvbIt7Jm5WGFbMPFDi6i4AFDm0FOU="; 24 + }; 25 + }; 26 + 27 + nativeBuildInputs = [ 28 + rustPlatform.cargoSetupHook 29 + rustPlatform.maturinBuildHook 30 + ]; 31 + 32 + buildInputs = lib.optionals stdenv.isDarwin [ 33 + libiconv 34 + ]; 35 + 36 + # no python tests exist 37 + doCheck = false; 38 + 39 + pythonImportsCheck = [ 40 + "dbt_extractor" 41 + ]; 42 + 43 + meta = with lib; { 44 + description = "A tool that processes the most common jinja value templates in dbt model files"; 45 + homepage = "https://github.com/dbt-labs/dbt-extractor"; 46 + license = licenses.asl20; 47 + maintainers = with maintainers; [ mausch tjni ]; 48 + }; 49 + }
+37
pkgs/development/python-modules/dbt-postgres/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , agate 4 + , dbt-core 5 + , psycopg2 6 + }: 7 + 8 + buildPythonPackage { 9 + pname = "dbt-postgres"; 10 + format = "setuptools"; 11 + 12 + inherit (dbt-core) version src; 13 + 14 + sourceRoot = "source/plugins/postgres"; 15 + 16 + env.DBT_PSYCOPG2_NAME = "psycopg2"; 17 + 18 + propagatedBuildInputs = [ 19 + agate 20 + dbt-core 21 + psycopg2 22 + ]; 23 + 24 + # tests exist for the dbt tool but not for this package specifically 25 + doCheck = false; 26 + 27 + pythonImportsCheck = [ 28 + "dbt.adapters.postgres" 29 + ]; 30 + 31 + meta = with lib; { 32 + description = "Plugin enabling dbt to work with a Postgres database"; 33 + homepage = "https://github.com/dbt-labs/dbt-core"; 34 + license = licenses.asl20; 35 + maintainers = with maintainers; [ tjni ]; 36 + }; 37 + }
+61
pkgs/development/python-modules/dbt-redshift/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , agate 5 + , boto3 6 + , dbt-core 7 + , dbt-postgres 8 + , pytestCheckHook 9 + , pythonRelaxDepsHook 10 + , redshift-connector 11 + }: 12 + 13 + buildPythonPackage rec { 14 + pname = "dbt-redshift"; 15 + version = "1.5.8"; 16 + format = "setuptools"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "dbt-labs"; 20 + repo = pname; 21 + rev = "refs/tags/v${version}"; 22 + hash = "sha256-T7cNszIroOT8TNfOzZpdJDR1+5ybhkXvyvvM5zokVgo="; 23 + }; 24 + 25 + nativeBuildInputs = [ 26 + pythonRelaxDepsHook 27 + ]; 28 + 29 + pythonRelaxDeps = [ 30 + "boto3" 31 + "redshift-connector" 32 + ]; 33 + 34 + propagatedBuildInputs = [ 35 + agate 36 + boto3 37 + dbt-core 38 + dbt-postgres 39 + redshift-connector 40 + ]; 41 + 42 + nativeCheckInputs = [ 43 + pytestCheckHook 44 + ]; 45 + 46 + pytestFlagsArray = [ 47 + "tests/unit" 48 + ]; 49 + 50 + pythonImportsCheck = [ 51 + "dbt.adapters.redshift" 52 + ]; 53 + 54 + meta = with lib; { 55 + description = "Plugin enabling dbt to work with Amazon Redshift"; 56 + homepage = "https://github.com/dbt-labs/dbt-redshift"; 57 + changelog = "https://github.com/dbt-labs/dbt-redshift/blob/${version}/CHANGELOG.md"; 58 + license = licenses.asl20; 59 + maintainers = with maintainers; [ tjni ]; 60 + }; 61 + }
+45
pkgs/development/python-modules/dbt-snowflake/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , dbt-core 5 + , pytestCheckHook 6 + , snowflake-connector-python 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "dbt-snowflake"; 11 + version = "1.5.2"; 12 + format = "setuptools"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "dbt-labs"; 16 + repo = pname; 17 + rev = "refs/tags/v${version}"; 18 + hash = "sha256-Oz9BDvxSG4kOteuwKiPccxlsmQtOEwDLVyirDSWy1kY="; 19 + }; 20 + 21 + propagatedBuildInputs = [ 22 + dbt-core 23 + snowflake-connector-python 24 + ] ++ snowflake-connector-python.optional-dependencies.secure-local-storage; 25 + 26 + nativeCheckInputs = [ 27 + pytestCheckHook 28 + ]; 29 + 30 + pytestFlagsArray = [ 31 + "tests/unit" 32 + ]; 33 + 34 + pythonImportsCheck = [ 35 + "dbt.adapters.snowflake" 36 + ]; 37 + 38 + meta = with lib; { 39 + description = "Plugin enabling dbt to work with Snowflake"; 40 + homepage = "https://github.com/dbt-labs/dbt-snowflake"; 41 + changelog = "https://github.com/dbt-labs/dbt-snowflake/blob/${version}/CHANGELOG.md"; 42 + license = licenses.asl20; 43 + maintainers = with maintainers; [ tjni ]; 44 + }; 45 + }
+1 -1
pkgs/development/python-modules/dbutils/default.nix
··· 30 30 description = "Database connections for multi-threaded environments"; 31 31 homepage = "https://webwareforpython.github.io/DBUtils/"; 32 32 license = licenses.mit; 33 - maintainers = with maintainers; [ SuperSandro2000 ]; 33 + maintainers = with maintainers; [ ]; 34 34 }; 35 35 }
+1 -1
pkgs/development/python-modules/debian/default.nix
··· 33 33 homepage = "https://salsa.debian.org/python-debian-team/python-debian"; 34 34 changelog = "https://salsa.debian.org/python-debian-team/python-debian/-/blob/master/debian/changelog"; 35 35 license = licenses.gpl2Plus; 36 - maintainers = with maintainers; [ SuperSandro2000 ]; 36 + maintainers = with maintainers; [ ]; 37 37 }; 38 38 }
+1 -1
pkgs/development/python-modules/dj-rest-auth/default.nix
··· 63 63 description = "Authentication for Django Rest Framework"; 64 64 homepage = "https://github.com/iMerica/dj-rest-auth"; 65 65 license = licenses.mit; 66 - maintainers = with maintainers; [ SuperSandro2000 ]; 66 + maintainers = with maintainers; [ ]; 67 67 }; 68 68 }
+1 -1
pkgs/development/python-modules/django-guardian/default.nix
··· 32 32 description = "Per object permissions for Django"; 33 33 homepage = "https://github.com/django-guardian/django-guardian"; 34 34 license = with licenses; [ mit bsd2 ]; 35 - maintainers = with maintainers; [ SuperSandro2000 ]; 35 + maintainers = with maintainers; [ ]; 36 36 }; 37 37 }
+1 -1
pkgs/development/python-modules/django-model-utils/default.nix
··· 51 51 description = "Django model mixins and utilities"; 52 52 changelog = "https://github.com/jazzband/django-model-utils/blob/${version}/CHANGES.rst"; 53 53 license = licenses.bsd3; 54 - maintainers = with maintainers; [ SuperSandro2000 ]; 54 + maintainers = with maintainers; [ ]; 55 55 }; 56 56 }
+1 -1
pkgs/development/python-modules/django-otp/default.nix
··· 42 42 homepage = "https://github.com/jazzband/django-model-utils"; 43 43 description = "Pluggable framework for adding two-factor authentication to Django using one-time passwords"; 44 44 license = licenses.bsd2; 45 - maintainers = with maintainers; [ SuperSandro2000 ]; 45 + maintainers = with maintainers; [ ]; 46 46 }; 47 47 }
+1 -1
pkgs/development/python-modules/django-polymorphic/default.nix
··· 25 25 homepage = "https://github.com/django-polymorphic/django-polymorphic"; 26 26 description = "Improved Django model inheritance with automatic downcasting"; 27 27 license = licenses.bsd3; 28 - maintainers = with maintainers; [ SuperSandro2000 ]; 28 + maintainers = with maintainers; [ ]; 29 29 }; 30 30 }
+1 -1
pkgs/development/python-modules/django-rest-auth/default.nix
··· 46 46 description = "Django app that makes registration and authentication easy"; 47 47 homepage = "https://github.com/Tivix/django-rest-auth"; 48 48 license = licenses.mit; 49 - maintainers = with maintainers; [ SuperSandro2000 ]; 49 + maintainers = with maintainers; [ ]; 50 50 }; 51 51 }
+1 -1
pkgs/development/python-modules/django-rest-polymorphic/default.nix
··· 41 41 description = "Polymorphic serializers for Django REST Framework"; 42 42 homepage = "https://github.com/apirobot/django-rest-polymorphic"; 43 43 license = licenses.mit; 44 - maintainers = with maintainers; [ SuperSandro2000 ]; 44 + maintainers = with maintainers; [ ]; 45 45 }; 46 46 }
+1 -1
pkgs/development/python-modules/djangorestframework-camel-case/default.nix
··· 32 32 description = "Camel case JSON support for Django REST framework"; 33 33 homepage = "https://github.com/vbabiy/djangorestframework-camel-case"; 34 34 license = licenses.bsd3; 35 - maintainers = with maintainers; [ SuperSandro2000 ]; 35 + maintainers = with maintainers; [ ]; 36 36 }; 37 37 }
+1 -1
pkgs/development/python-modules/djangorestframework-dataclasses/default.nix
··· 39 39 description = " Dataclasses serializer for Django REST framework"; 40 40 homepage = "https://github.com/oxan/djangorestframework-dataclasses"; 41 41 license = licenses.bsd3; 42 - maintainers = with maintainers; [ SuperSandro2000 ]; 42 + maintainers = with maintainers; [ ]; 43 43 }; 44 44 }
+1 -1
pkgs/development/python-modules/djangorestframework-guardian/default.nix
··· 36 36 description = "Django-guardian support for Django REST Framework"; 37 37 homepage = "https://github.com/rpkilby/django-rest-framework-guardian"; 38 38 license = licenses.bsd3; 39 - maintainers = with maintainers; [ SuperSandro2000 ]; 39 + maintainers = with maintainers; [ ]; 40 40 }; 41 41 }
+1 -1
pkgs/development/python-modules/djangorestframework-recursive/default.nix
··· 32 32 description = " Recursive Serialization for Django REST framework "; 33 33 homepage = "https://github.com/heywbj/django-rest-framework-recursive"; 34 34 license = licenses.isc; 35 - maintainers = with maintainers; [ SuperSandro2000 ]; 35 + maintainers = with maintainers; [ ]; 36 36 }; 37 37 }
+1 -1
pkgs/development/python-modules/djangorestframework/default.nix
··· 45 45 meta = with lib; { 46 46 description = "Web APIs for Django, made easy"; 47 47 homepage = "https://www.django-rest-framework.org/"; 48 - maintainers = with maintainers; [ desiderius SuperSandro2000 ]; 48 + maintainers = with maintainers; [ desiderius ]; 49 49 license = licenses.bsd2; 50 50 }; 51 51 }
+1 -1
pkgs/development/python-modules/drf-spectacular-sidecar/default.nix
··· 29 29 description = "Serve self-contained distribution builds of Swagger UI and Redoc with Django"; 30 30 homepage = "https://github.com/tfranzel/drf-spectacular-sidecar"; 31 31 license = licenses.bsd3; 32 - maintainers = with maintainers; [ SuperSandro2000 ]; 32 + maintainers = with maintainers; [ ]; 33 33 }; 34 34 }
+1 -1
pkgs/development/python-modules/drf-spectacular/default.nix
··· 78 78 homepage = "https://github.com/tfranzel/drf-spectacular"; 79 79 changelog = "https://github.com/tfranzel/drf-spectacular/releases/tag/${version}"; 80 80 license = licenses.bsd3; 81 - maintainers = with maintainers; [ SuperSandro2000 ]; 81 + maintainers = with maintainers; [ ]; 82 82 }; 83 83 }
+1 -1
pkgs/development/python-modules/duo-client/default.nix
··· 47 47 homepage = "https://github.com/duosecurity/duo_client_python"; 48 48 changelog = "https://github.com/duosecurity/duo_client_python/releases/tag/${version}"; 49 49 license = licenses.bsd3; 50 - maintainers = with maintainers; [ SuperSandro2000 ]; 50 + maintainers = with maintainers; [ ]; 51 51 }; 52 52 }
+1 -1
pkgs/development/python-modules/editorconfig/default.nix
··· 48 48 description = "EditorConfig File Locator and Interpreter for Python"; 49 49 homepage = "https://github.com/editorconfig/editorconfig-core-py"; 50 50 license = licenses.psfl; 51 - maintainers = with maintainers; [ SuperSandro2000 ]; 51 + maintainers = with maintainers; [ ]; 52 52 }; 53 53 }
+35
pkgs/development/python-modules/enochecker-core/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pythonOlder 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "enochecker-core"; 9 + version = "0.10.0"; 10 + format = "setuptools"; 11 + 12 + disabled = pythonOlder "3.7"; 13 + 14 + src = fetchPypi { 15 + inherit version; 16 + pname = "enochecker_core"; 17 + hash = "sha256-N41p2XRCp55rcPXLpA4rPIARsva/dQzK8qafjzXtavI="; 18 + }; 19 + 20 + 21 + pythonImportsCheck = [ 22 + "enochecker_core" 23 + ]; 24 + 25 + # no tests upstream 26 + doCheck = false; 27 + 28 + meta = with lib; { 29 + description = "Base library for enochecker libs"; 30 + homepage = "https://github.com/enowars/enochecker_core"; 31 + changelog = "https://github.com/enowars/enochecker_core/releases/tag/v${version}"; 32 + license = licenses.mit; 33 + maintainers = with maintainers; [ fwc ]; 34 + }; 35 + }
+1 -1
pkgs/development/python-modules/enrich/default.nix
··· 26 26 description = "Enrich adds few missing features to the wonderful rich library"; 27 27 homepage = "https://github.com/pycontribs/enrich"; 28 28 license = licenses.mit; 29 - maintainers = with maintainers; [ SuperSandro2000 ]; 29 + maintainers = with maintainers; [ ]; 30 30 }; 31 31 }
+1 -1
pkgs/development/python-modules/eth-abi/default.nix
··· 56 56 description = "Ethereum ABI utilities"; 57 57 homepage = "https://github.com/ethereum/eth-abi"; 58 58 license = licenses.mit; 59 - maintainers = with maintainers; [ SuperSandro2000 ]; 59 + maintainers = with maintainers; [ ]; 60 60 }; 61 61 }
+1 -1
pkgs/development/python-modules/eth-account/default.nix
··· 46 46 description = "Account abstraction library for web3.py"; 47 47 homepage = "https://github.com/ethereum/eth-account"; 48 48 license = licenses.mit; 49 - maintainers = with maintainers; [ SuperSandro2000 ]; 49 + maintainers = with maintainers; [ ]; 50 50 }; 51 51 }
+1 -1
pkgs/development/python-modules/eth-hash/default.nix
··· 43 43 description = "The Ethereum hashing function keccak256"; 44 44 homepage = "https://github.com/ethereum/eth-hash"; 45 45 license = licenses.mit; 46 - maintainers = with maintainers; [ SuperSandro2000 ]; 46 + maintainers = with maintainers; [ ]; 47 47 }; 48 48 }
+1 -1
pkgs/development/python-modules/eth-keyfile/default.nix
··· 42 42 description = "Tools for handling the encrypted keyfile format used to store private keys"; 43 43 homepage = "https://github.com/ethereum/eth-keyfile"; 44 44 license = licenses.mit; 45 - maintainers = with maintainers; [ SuperSandro2000 ]; 45 + maintainers = with maintainers; [ ]; 46 46 }; 47 47 }
+1 -1
pkgs/development/python-modules/eth-keys/default.nix
··· 64 64 description = "Common API for Ethereum key operations"; 65 65 homepage = "https://github.com/ethereum/eth-keys"; 66 66 license = licenses.mit; 67 - maintainers = with maintainers; [ SuperSandro2000 ]; 67 + maintainers = with maintainers; [ ]; 68 68 }; 69 69 }
+1 -1
pkgs/development/python-modules/eth-rlp/default.nix
··· 37 37 description = "RLP definitions for common Ethereum objects"; 38 38 homepage = "https://github.com/ethereum/eth-rlp"; 39 39 license = licenses.mit; 40 - maintainers = with maintainers; [ SuperSandro2000 ]; 40 + maintainers = with maintainers; [ ]; 41 41 }; 42 42 }
+1 -1
pkgs/development/python-modules/eth-typing/default.nix
··· 32 32 homepage = "https://github.com/ethereum/eth-typing"; 33 33 changelog = "https://github.com/ethereum/eth-typing/blob/v${version}/docs/release_notes.rst"; 34 34 license = licenses.mit; 35 - maintainers = with maintainers; [ SuperSandro2000 ]; 35 + maintainers = with maintainers; [ ]; 36 36 }; 37 37 }
+1 -1
pkgs/development/python-modules/eth-utils/default.nix
··· 46 46 description = "Common utility functions for codebases which interact with ethereum"; 47 47 homepage = "https://github.com/ethereum/eth-utils"; 48 48 license = lib.licenses.mit; 49 - maintainers = with lib.maintainers; [ SuperSandro2000 ]; 49 + maintainers = with lib.maintainers; [ ]; 50 50 }; 51 51 }
+1 -1
pkgs/development/python-modules/exdown/default.nix
··· 36 36 description = "Extract code blocks from markdown"; 37 37 homepage = "https://github.com/nschloe/exdown"; 38 38 license = licenses.mit; 39 - maintainers = with maintainers; [ SuperSandro2000 ]; 39 + maintainers = with maintainers; [ ]; 40 40 }; 41 41 }
+1 -1
pkgs/development/python-modules/fastdiff/default.nix
··· 48 48 description = "A fast native implementation of diff algorithm with a pure Python fallback"; 49 49 homepage = "https://github.com/syrusakbary/fastdiff"; 50 50 license = licenses.mit; 51 - maintainers = with maintainers; [ SuperSandro2000 ]; 51 + maintainers = with maintainers; [ ]; 52 52 # resulting compiled object panics at import 53 53 broken = stdenv.is32bit; 54 54 };
+1 -1
pkgs/development/python-modules/flask/default.nix
··· 57 57 Python web application frameworks. 58 58 ''; 59 59 license = licenses.bsd3; 60 - maintainers = with maintainers; [ SuperSandro2000 ]; 60 + maintainers = with maintainers; [ ]; 61 61 }; 62 62 }
+1 -1
pkgs/development/python-modules/flit-core/default.nix
··· 37 37 description = "Distribution-building parts of Flit. See flit package for more information"; 38 38 homepage = "https://github.com/pypa/flit"; 39 39 license = licenses.bsd3; 40 - maintainers = with maintainers; [ fridh SuperSandro2000 ]; 40 + maintainers = with maintainers; [ fridh ]; 41 41 }; 42 42 }
+1 -1
pkgs/development/python-modules/flit/default.nix
··· 54 54 description = "A simple packaging tool for simple packages"; 55 55 homepage = "https://github.com/pypa/flit"; 56 56 license = licenses.bsd3; 57 - maintainers = with maintainers; [ fridh SuperSandro2000 ]; 57 + maintainers = with maintainers; [ fridh ]; 58 58 }; 59 59 }
+1 -1
pkgs/development/python-modules/func-timeout/default.nix
··· 24 24 description = "Allows you to specify timeouts when calling any existing function. Also provides support for stoppable-threads"; 25 25 homepage = "https://github.com/kata198/func_timeout"; 26 26 license = licenses.lgpl3Only; 27 - maintainers = with maintainers; [ SuperSandro2000 ]; 27 + maintainers = with maintainers; [ ]; 28 28 }; 29 29 }
+1 -1
pkgs/development/python-modules/google-api-core/default.nix
··· 87 87 homepage = "https://github.com/googleapis/python-api-core"; 88 88 changelog = "https://github.com/googleapis/python-api-core/blob/v${version}/CHANGELOG.md"; 89 89 license = licenses.asl20; 90 - maintainers = with maintainers; [ SuperSandro2000 ]; 90 + maintainers = with maintainers; [ ]; 91 91 }; 92 92 }
+1 -1
pkgs/development/python-modules/google-auth-httplib2/default.nix
··· 39 39 homepage = "https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2"; 40 40 changelog = "https://github.com/googleapis/google-auth-library-python-httplib2/blob/v${version}/CHANGELOG.md"; 41 41 license = licenses.asl20; 42 - maintainers = with maintainers; [ SuperSandro2000 ]; 42 + maintainers = with maintainers; [ ]; 43 43 }; 44 44 }
+1 -1
pkgs/development/python-modules/google-auth-oauthlib/default.nix
··· 44 44 description = "Google Authentication Library: oauthlib integration"; 45 45 homepage = "https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib"; 46 46 license = licenses.asl20; 47 - maintainers = with maintainers; [ SuperSandro2000 terlar ]; 47 + maintainers = with maintainers; [ terlar ]; 48 48 }; 49 49 }
+1 -1
pkgs/development/python-modules/google-auth/default.nix
··· 105 105 homepage = "https://github.com/googleapis/google-auth-library-python"; 106 106 changelog = "https://github.com/googleapis/google-auth-library-python/blob/v${version}/CHANGELOG.md"; 107 107 license = licenses.asl20; 108 - maintainers = with maintainers; [ SuperSandro2000 ]; 108 + maintainers = with maintainers; [ ]; 109 109 }; 110 110 }
+1 -1
pkgs/development/python-modules/google-cloud-access-context-manager/default.nix
··· 35 35 homepage = "https://github.com/googleapis/python-access-context-manager"; 36 36 changelog = "https://github.com/googleapis/python-access-context-manager/blob/v${version}/CHANGELOG.md"; 37 37 license = licenses.asl20; 38 - maintainers = with maintainers; [ austinbutler SuperSandro2000 ]; 38 + maintainers = with maintainers; [ austinbutler ]; 39 39 }; 40 40 }
+1 -1
pkgs/development/python-modules/google-cloud-asset/default.nix
··· 66 66 homepage = "https://github.com/googleapis/python-asset"; 67 67 changelog = "https://github.com/googleapis/python-asset/blob/v${version}/CHANGELOG.md"; 68 68 license = licenses.asl20; 69 - maintainers = with maintainers; [ SuperSandro2000 ]; 69 + maintainers = with maintainers; [ ]; 70 70 }; 71 71 }
+1 -1
pkgs/development/python-modules/google-cloud-audit-log/default.nix
··· 32 32 homepage = "https://github.com/googleapis/python-audit-log"; 33 33 changelog = "https://github.com/googleapis/python-audit-log/blob/v${version}/CHANGELOG.md"; 34 34 license = licenses.asl20; 35 - maintainers = with maintainers; [ SuperSandro2000 ]; 35 + maintainers = with maintainers; [ ]; 36 36 }; 37 37 }
+1 -1
pkgs/development/python-modules/google-cloud-automl/default.nix
··· 79 79 homepage = "https://github.com/googleapis/python-automl"; 80 80 changelog = "https://github.com/googleapis/python-automl/blob/v${version}/CHANGELOG.md"; 81 81 license = licenses.asl20; 82 - maintainers = with maintainers; [ SuperSandro2000 ]; 82 + maintainers = with maintainers; [ ]; 83 83 }; 84 84 }
+1 -1
pkgs/development/python-modules/google-cloud-bigquery-datatransfer/default.nix
··· 48 48 homepage = "https://github.com/googleapis/python-bigquery-datatransfer"; 49 49 changelog = "https://github.com/googleapis/python-bigquery-datatransfer/blob/v${version}/CHANGELOG.md"; 50 50 license = licenses.asl20; 51 - maintainers = with maintainers; [ SuperSandro2000 ]; 51 + maintainers = with maintainers; [ ]; 52 52 }; 53 53 }
+1 -1
pkgs/development/python-modules/google-cloud-bigquery-storage/default.nix
··· 65 65 homepage = "https://github.com/googleapis/python-bigquery-storage"; 66 66 changelog = "https://github.com/googleapis/python-bigquery-storage/blob/v${version}/CHANGELOG.md"; 67 67 license = licenses.asl20; 68 - maintainers = with maintainers; [ SuperSandro2000 ]; 68 + maintainers = with maintainers; [ ]; 69 69 }; 70 70 }
+1 -1
pkgs/development/python-modules/google-cloud-bigquery/default.nix
··· 131 131 homepage = "https://github.com/googleapis/python-bigquery"; 132 132 changelog = "https://github.com/googleapis/python-bigquery/blob/v${version}/CHANGELOG.md"; 133 133 license = licenses.asl20; 134 - maintainers = with maintainers; [ SuperSandro2000 ]; 134 + maintainers = with maintainers; [ ]; 135 135 }; 136 136 }
+1 -1
pkgs/development/python-modules/google-cloud-container/default.nix
··· 52 52 homepage = "https://github.com/googleapis/python-container"; 53 53 changelog = "https://github.com/googleapis/python-container/blob/v${version}/CHANGELOG.md"; 54 54 license = licenses.asl20; 55 - maintainers = with maintainers; [ SuperSandro2000 ]; 55 + maintainers = with maintainers; [ ]; 56 56 }; 57 57 }
+1 -1
pkgs/development/python-modules/google-cloud-core/default.nix
··· 51 51 homepage = "https://github.com/googleapis/python-cloud-core"; 52 52 changelog = "https://github.com/googleapis/python-cloud-core/blob/v${version}/CHANGELOG.md"; 53 53 license = licenses.asl20; 54 - maintainers = with maintainers; [ SuperSandro2000 ]; 54 + maintainers = with maintainers; [ ]; 55 55 }; 56 56 }
+1 -1
pkgs/development/python-modules/google-cloud-datacatalog/default.nix
··· 47 47 homepage = "https://github.com/googleapis/python-datacatalog"; 48 48 changelog = "https://github.com/googleapis/python-datacatalog/blob/v${version}/CHANGELOG.md"; 49 49 license = licenses.asl20; 50 - maintainers = with maintainers; [ SuperSandro2000 ]; 50 + maintainers = with maintainers; [ ]; 51 51 }; 52 52 }
+1 -1
pkgs/development/python-modules/google-cloud-dataproc/default.nix
··· 53 53 homepage = "https://github.com/googleapis/python-dataproc"; 54 54 changelog = "https://github.com/googleapis/python-dataproc/blob/v${version}/CHANGELOG.md"; 55 55 license = licenses.asl20; 56 - maintainers = with maintainers; [ SuperSandro2000 ]; 56 + maintainers = with maintainers; [ ]; 57 57 }; 58 58 }
+1 -1
pkgs/development/python-modules/google-cloud-datastore/default.nix
··· 71 71 homepage = "https://github.com/googleapis/python-datastore"; 72 72 changelog = "https://github.com/googleapis/python-datastore/blob/v${version}/CHANGELOG.md"; 73 73 license = licenses.asl20; 74 - maintainers = with maintainers; [ SuperSandro2000 ]; 74 + maintainers = with maintainers; [ ]; 75 75 }; 76 76 }
+1 -1
pkgs/development/python-modules/google-cloud-dlp/default.nix
··· 51 51 homepage = "https://github.com/googleapis/python-dlp"; 52 52 changelog = "https://github.com/googleapis/python-dlp/blob/v${version}/CHANGELOG.md"; 53 53 license = licenses.asl20; 54 - maintainers = with maintainers; [ SuperSandro2000 ]; 54 + maintainers = with maintainers; [ ]; 55 55 }; 56 56 }
+1 -1
pkgs/development/python-modules/google-cloud-dns/default.nix
··· 49 49 homepage = "https://github.com/googleapis/python-dns"; 50 50 changelog = "https://github.com/googleapis/python-dns/blob/v${version}/CHANGELOG.md"; 51 51 license = licenses.asl20; 52 - maintainers = with maintainers; [ SuperSandro2000 ]; 52 + maintainers = with maintainers; [ ]; 53 53 }; 54 54 }
+1 -1
pkgs/development/python-modules/google-cloud-error-reporting/default.nix
··· 54 54 homepage = "https://github.com/googleapis/python-error-reporting"; 55 55 changelog = "https://github.com/googleapis/python-error-reporting/blob/v${version}/CHANGELOG.md"; 56 56 license = licenses.asl20; 57 - maintainers = with maintainers; [ SuperSandro2000 ]; 57 + maintainers = with maintainers; [ ]; 58 58 }; 59 59 }
+1 -1
pkgs/development/python-modules/google-cloud-firestore/default.nix
··· 68 68 homepage = "https://github.com/googleapis/python-firestore"; 69 69 changelog = "https://github.com/googleapis/python-firestore/blob/v${version}/CHANGELOG.md"; 70 70 license = licenses.asl20; 71 - maintainers = with maintainers; [ SuperSandro2000 ]; 71 + maintainers = with maintainers; [ ]; 72 72 }; 73 73 }
+1 -1
pkgs/development/python-modules/google-cloud-iam/default.nix
··· 44 44 homepage = "https://github.com/googleapis/python-iam"; 45 45 changelog = "https://github.com/googleapis/python-iam/releases/tag/v${version}"; 46 46 license = licenses.asl20; 47 - maintainers = with maintainers; [ austinbutler SuperSandro2000 ]; 47 + maintainers = with maintainers; [ austinbutler ]; 48 48 }; 49 49 }
+1 -1
pkgs/development/python-modules/google-cloud-iot/default.nix
··· 53 53 homepage = "https://github.com/googleapis/python-iot"; 54 54 changelog = "https://github.com/googleapis/python-iot/blob/v${version}/CHANGELOG.md"; 55 55 license = licenses.asl20; 56 - maintainers = with maintainers; [ SuperSandro2000 ]; 56 + maintainers = with maintainers; [ ]; 57 57 }; 58 58 }
+1 -1
pkgs/development/python-modules/google-cloud-kms/default.nix
··· 51 51 homepage = "https://github.com/googleapis/python-kms"; 52 52 changelog = "https://github.com/googleapis/python-kms/blob/v${version}/CHANGELOG.md"; 53 53 license = licenses.asl20; 54 - maintainers = with maintainers; [ SuperSandro2000 ]; 54 + maintainers = with maintainers; [ ]; 55 55 }; 56 56 }
+1 -1
pkgs/development/python-modules/google-cloud-language/default.nix
··· 43 43 homepage = "https://github.com/googleapis/python-language"; 44 44 changelog = "https://github.com/googleapis/python-language/blob/v${version}/CHANGELOG.md"; 45 45 license = licenses.asl20; 46 - maintainers = with maintainers; [ SuperSandro2000 ]; 46 + maintainers = with maintainers; [ ]; 47 47 }; 48 48 }
+1 -1
pkgs/development/python-modules/google-cloud-logging/default.nix
··· 80 80 homepage = "https://github.com/googleapis/python-logging"; 81 81 changelog = "https://github.com/googleapis/python-logging/blob/v${version}/CHANGELOG.md"; 82 82 license = licenses.asl20; 83 - maintainers = with maintainers; [ SuperSandro2000 ]; 83 + maintainers = with maintainers; [ ]; 84 84 }; 85 85 }
+1 -1
pkgs/development/python-modules/google-cloud-monitoring/default.nix
··· 58 58 homepage = "https://github.com/googleapis/python-monitoring"; 59 59 changelog = "https://github.com/googleapis/python-monitoring/blob/v${version}/CHANGELOG.md"; 60 60 license = licenses.asl20; 61 - maintainers = with maintainers; [ SuperSandro2000 ]; 61 + maintainers = with maintainers; [ ]; 62 62 }; 63 63 }
+1 -1
pkgs/development/python-modules/google-cloud-org-policy/default.nix
··· 46 46 homepage = "https://github.com/googleapis/python-org-policy"; 47 47 changelog = "https://github.com/googleapis/python-org-policy/blob/v${version}/CHANGELOG.md"; 48 48 license = licenses.asl20; 49 - maintainers = with maintainers; [ austinbutler SuperSandro2000 ]; 49 + maintainers = with maintainers; [ austinbutler ]; 50 50 }; 51 51 }
+1 -1
pkgs/development/python-modules/google-cloud-os-config/default.nix
··· 46 46 homepage = "https://github.com/googleapis/python-os-config"; 47 47 changelog = "https://github.com/googleapis/python-os-config/blob/v${version}/CHANGELOG.md"; 48 48 license = licenses.asl20; 49 - maintainers = with maintainers; [ SuperSandro2000 ]; 49 + maintainers = with maintainers; [ ]; 50 50 }; 51 51 }
+1 -1
pkgs/development/python-modules/google-cloud-pubsub/default.nix
··· 67 67 homepage = "https://github.com/googleapis/python-pubsub"; 68 68 changelog = "https://github.com/googleapis/python-pubsub/blob/v${version}/CHANGELOG.md"; 69 69 license = licenses.asl20; 70 - maintainers = with maintainers; [ SuperSandro2000 ]; 70 + maintainers = with maintainers; [ ]; 71 71 }; 72 72 }
+1 -1
pkgs/development/python-modules/google-cloud-redis/default.nix
··· 43 43 homepage = "https://github.com/googleapis/python-redis"; 44 44 changelog = "https://github.com/googleapis/python-redis/blob/v${version}/CHANGELOG.md"; 45 45 license = licenses.asl20; 46 - maintainers = with maintainers; [ SuperSandro2000 ]; 46 + maintainers = with maintainers; [ ]; 47 47 }; 48 48 }
+1 -1
pkgs/development/python-modules/google-cloud-resource-manager/default.nix
··· 51 51 homepage = "https://github.com/googleapis/python-resource-manager"; 52 52 changelog = "https://github.com/googleapis/python-resource-manager/blob/v${version}/CHANGELOG.md"; 53 53 license = licenses.asl20; 54 - maintainers = with maintainers; [ SuperSandro2000 ]; 54 + maintainers = with maintainers; [ ]; 55 55 }; 56 56 }
+1 -1
pkgs/development/python-modules/google-cloud-runtimeconfig/default.nix
··· 49 49 homepage = "https://github.com/googleapis/python-runtimeconfig"; 50 50 changelog = "https://github.com/googleapis/python-runtimeconfig/blob/v${version}/CHANGELOG.md"; 51 51 license = licenses.asl20; 52 - maintainers = with maintainers; [ SuperSandro2000 ]; 52 + maintainers = with maintainers; [ ]; 53 53 }; 54 54 }
+1 -1
pkgs/development/python-modules/google-cloud-secret-manager/default.nix
··· 45 45 homepage = "https://github.com/googleapis/python-secret-manager"; 46 46 changelog = "https://github.com/googleapis/python-secret-manager/blob/v${version}/CHANGELOG.md"; 47 47 license = licenses.asl20; 48 - maintainers = with maintainers; [ siriobalmelli SuperSandro2000 ]; 48 + maintainers = with maintainers; [ siriobalmelli ]; 49 49 }; 50 50 }
+1 -1
pkgs/development/python-modules/google-cloud-securitycenter/default.nix
··· 46 46 homepage = "https://github.com/googleapis/python-securitycenter"; 47 47 changelog = "https://github.com/googleapis/python-securitycenter/blob/v${version}/CHANGELOG.md"; 48 48 license = licenses.asl20; 49 - maintainers = with maintainers; [ SuperSandro2000 ]; 49 + maintainers = with maintainers; [ ]; 50 50 }; 51 51 }
+3 -3
pkgs/development/python-modules/google-cloud-spanner/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "google-cloud-spanner"; 20 - version = "3.37.0"; 20 + version = "3.38.0"; 21 21 format = "setuptools"; 22 22 23 23 disabled = pythonOlder "3.7"; 24 24 25 25 src = fetchPypi { 26 26 inherit pname version; 27 - hash = "sha256-Q/tvve5pXpj77Ufu9Vp38jLSIL17Roi2PLSD27bvfIA="; 27 + hash = "sha256-+JprkY2HU6RjkarQ74IemkD8lC3CW53x0kDwhrX/jRk="; 28 28 }; 29 29 30 30 propagatedBuildInputs = [ ··· 80 80 homepage = "https://github.com/googleapis/python-spanner"; 81 81 changelog = "https://github.com/googleapis/python-spanner/blob/v${version}/CHANGELOG.md"; 82 82 license = licenses.asl20; 83 - maintainers = with maintainers; [ SuperSandro2000 ]; 83 + maintainers = with maintainers; [ ]; 84 84 }; 85 85 }
+1 -1
pkgs/development/python-modules/google-cloud-speech/default.nix
··· 53 53 homepage = "https://github.com/googleapis/python-speech"; 54 54 changelog = "https://github.com/googleapis/python-speech/blob/v${version}/CHANGELOG.md"; 55 55 license = licenses.asl20; 56 - maintainers = with maintainers; [ SuperSandro2000 ]; 56 + maintainers = with maintainers; [ ]; 57 57 }; 58 58 }
+1 -1
pkgs/development/python-modules/google-cloud-storage/default.nix
··· 89 89 homepage = "https://github.com/googleapis/python-storage"; 90 90 changelog = "https://github.com/googleapis/python-storage/blob/v${version}/CHANGELOG.md"; 91 91 license = licenses.asl20; 92 - maintainers = with maintainers; [ SuperSandro2000 ]; 92 + maintainers = with maintainers; [ ]; 93 93 }; 94 94 }
+1 -1
pkgs/development/python-modules/google-cloud-tasks/default.nix
··· 53 53 homepage = "https://github.com/googleapis/python-tasks"; 54 54 changelog = "https://github.com/googleapis/python-tasks/blob/v${version}/CHANGELOG.md"; 55 55 license = licenses.asl20; 56 - maintainers = with maintainers; [ SuperSandro2000 ]; 56 + maintainers = with maintainers; [ ]; 57 57 }; 58 58 }
+1 -1
pkgs/development/python-modules/google-cloud-testutils/default.nix
··· 37 37 homepage = "https://github.com/googleapis/python-test-utils"; 38 38 changelog ="https://github.com/googleapis/python-test-utils/blob/v${version}/CHANGELOG.md"; 39 39 license = licenses.asl20; 40 - maintainers = with maintainers; [ SuperSandro2000 ]; 40 + maintainers = with maintainers; [ ]; 41 41 }; 42 42 }
+1 -1
pkgs/development/python-modules/google-cloud-texttospeech/default.nix
··· 51 51 homepage = "https://github.com/googleapis/python-texttospeech"; 52 52 changelog = "https://github.com/googleapis/python-texttospeech/blob/v${version}/CHANGELOG.md"; 53 53 license = licenses.asl20; 54 - maintainers = with maintainers; [ SuperSandro2000 ]; 54 + maintainers = with maintainers; [ ]; 55 55 }; 56 56 }
+1 -1
pkgs/development/python-modules/google-cloud-trace/default.nix
··· 53 53 homepage = "https://github.com/googleapis/python-trace"; 54 54 changelog = "https://github.com/googleapis/python-trace/blob/v${version}/CHANGELOG.md"; 55 55 license = licenses.asl20; 56 - maintainers = with maintainers; [ SuperSandro2000 ]; 56 + maintainers = with maintainers; [ ]; 57 57 }; 58 58 }
+1 -1
pkgs/development/python-modules/google-cloud-translate/default.nix
··· 55 55 homepage = "https://github.com/googleapis/python-translate"; 56 56 changelog = "https://github.com/googleapis/python-translate/blob/v${version}/CHANGELOG.md"; 57 57 license = licenses.asl20; 58 - maintainers = with maintainers; [ SuperSandro2000 ]; 58 + maintainers = with maintainers; [ ]; 59 59 }; 60 60 }
+1 -1
pkgs/development/python-modules/google-cloud-videointelligence/default.nix
··· 55 55 homepage = "https://github.com/googleapis/python-videointelligence"; 56 56 changelog = "https://github.com/googleapis/python-videointelligence/blob/v${version}/CHANGELOG.md"; 57 57 license = licenses.asl20; 58 - maintainers = with maintainers; [ SuperSandro2000 ]; 58 + maintainers = with maintainers; [ ]; 59 59 }; 60 60 }
+1 -1
pkgs/development/python-modules/google-cloud-vision/default.nix
··· 49 49 homepage = "https://github.com/googleapis/python-vision"; 50 50 changelog = "https://github.com/googleapis/python-vision/blob/v${version}/CHANGELOG.md"; 51 51 license = licenses.asl20; 52 - maintainers = with maintainers; [ SuperSandro2000 ]; 52 + maintainers = with maintainers; [ ]; 53 53 }; 54 54 }
+1 -1
pkgs/development/python-modules/google-cloud-websecurityscanner/default.nix
··· 44 44 homepage = "https://github.com/googleapis/python-websecurityscanner"; 45 45 changelog = "https://github.com/googleapis/python-websecurityscanner/blob/v${version}/CHANGELOG.md"; 46 46 license = licenses.asl20; 47 - maintainers = with maintainers; [ SuperSandro2000 ]; 47 + maintainers = with maintainers; [ ]; 48 48 }; 49 49 }
+1 -1
pkgs/development/python-modules/google-crc32c/default.nix
··· 26 26 homepage = "https://github.com/googleapis/python-crc32c"; 27 27 description = "Wrapper the google/crc32c hardware-based implementation of the CRC32C hashing algorithm"; 28 28 license = with licenses; [ asl20 ]; 29 - maintainers = with maintainers; [ freezeboy SuperSandro2000 ]; 29 + maintainers = with maintainers; [ freezeboy ]; 30 30 }; 31 31 }
+1 -1
pkgs/development/python-modules/google-i18n-address/default.nix
··· 42 42 homepage = "https://github.com/mirumee/google-i18n-address"; 43 43 changelog = "https://github.com/mirumee/google-i18n-address/releases/tag/${version}"; 44 44 license = licenses.bsd3; 45 - maintainers = with maintainers; [ SuperSandro2000 ]; 45 + maintainers = with maintainers; [ ]; 46 46 }; 47 47 }
+1 -1
pkgs/development/python-modules/google-resumable-media/default.nix
··· 64 64 homepage = "https://github.com/GoogleCloudPlatform/google-resumable-media-python"; 65 65 changelog = "https://github.com/googleapis/google-resumable-media-python/blob/v${version}/CHANGELOG.md"; 66 66 license = licenses.asl20; 67 - maintainers = with maintainers; [ SuperSandro2000 ]; 67 + maintainers = with maintainers; [ ]; 68 68 }; 69 69 }
+1 -1
pkgs/development/python-modules/googleapis-common-protos/default.nix
··· 31 31 description = "Common protobufs used in Google APIs"; 32 32 homepage = "https://github.com/googleapis/python-api-common-protos"; 33 33 license = licenses.asl20; 34 - maintainers = with maintainers; [ SuperSandro2000 ]; 34 + maintainers = with maintainers; [ ]; 35 35 }; 36 36 }
+1 -1
pkgs/development/python-modules/graphene/default.nix
··· 60 60 homepage = "https://github.com/graphql-python/graphene"; 61 61 changelog = "https://github.com/graphql-python/graphene/releases/tag/v${version}"; 62 62 license = licenses.mit; 63 - maintainers = with maintainers; [ SuperSandro2000 ]; 63 + maintainers = with maintainers; [ ]; 64 64 }; 65 65 }
+1 -1
pkgs/development/python-modules/graphql-relay/default.nix
··· 49 49 description = "A library to help construct a graphql-py server supporting react-relay"; 50 50 homepage = "https://github.com/graphql-python/graphql-relay-py/"; 51 51 license = licenses.mit; 52 - maintainers = with maintainers; [ SuperSandro2000 ]; 52 + maintainers = with maintainers; [ ]; 53 53 }; 54 54 }
+1 -1
pkgs/development/python-modules/grpc-google-iam-v1/default.nix
··· 28 28 description = "GRPC library for the google-iam-v1 service"; 29 29 homepage = "https://github.com/googleapis/googleapis"; 30 30 license = licenses.asl20; 31 - maintainers = with maintainers; [ SuperSandro2000 ]; 31 + maintainers = with maintainers; [ ]; 32 32 }; 33 33 }
+1 -1
pkgs/development/python-modules/grpcio/default.nix
··· 51 51 description = "HTTP/2-based RPC framework"; 52 52 license = licenses.asl20; 53 53 homepage = "https://grpc.io/grpc/python/"; 54 - maintainers = with maintainers; [ SuperSandro2000 ]; 54 + maintainers = with maintainers; [ ]; 55 55 }; 56 56 }
+1 -1
pkgs/development/python-modules/gunicorn/default.nix
··· 50 50 homepage = "https://github.com/benoitc/gunicorn"; 51 51 description = "gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications"; 52 52 license = licenses.mit; 53 - maintainers = with maintainers; [ SuperSandro2000 ]; 53 + maintainers = with maintainers; [ ]; 54 54 }; 55 55 }
+1 -1
pkgs/development/python-modules/h11/default.nix
··· 31 31 description = "Pure-Python, bring-your-own-I/O implementation of HTTP/1.1"; 32 32 homepage = "https://github.com/python-hyper/h11"; 33 33 license = licenses.mit; 34 - maintainers = with maintainers; [ SuperSandro2000 ]; 34 + maintainers = with maintainers; [ ]; 35 35 }; 36 36 }
+1 -1
pkgs/development/python-modules/h2/default.nix
··· 54 54 description = "HTTP/2 State-Machine based protocol implementation"; 55 55 homepage = "https://github.com/python-hyper/h2"; 56 56 license = licenses.mit; 57 - maintainers = with maintainers; [ SuperSandro2000 ]; 57 + maintainers = with maintainers; [ ]; 58 58 }; 59 59 }
+1 -1
pkgs/development/python-modules/hexbytes/default.nix
··· 36 36 homepage = "https://github.com/ethereum/hexbytes"; 37 37 changelog = "https://github.com/ethereum/hexbytes/blob/v${version}/docs/release_notes.rst"; 38 38 license = licenses.mit; 39 - maintainers = with maintainers; [ SuperSandro2000 ]; 39 + maintainers = with maintainers; [ ]; 40 40 }; 41 41 }
+45
pkgs/development/python-modules/hologram/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , jsonschema 5 + , pytestCheckHook 6 + , python-dateutil 7 + , setuptools 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "hologram"; 12 + version = "0.0.16"; 13 + format = "pyproject"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "dbt-labs"; 17 + repo = pname; 18 + rev = "refs/tags/v${version}"; 19 + hash = "sha256-DboVCvByI8bTThamGBwSiQADGxIaEnTMmwmVI+4ARgc="; 20 + }; 21 + 22 + nativeBuildInputs = [ 23 + setuptools 24 + ]; 25 + 26 + propagatedBuildInputs = [ 27 + jsonschema 28 + python-dateutil 29 + ]; 30 + 31 + nativeCheckInputs = [ 32 + pytestCheckHook 33 + ]; 34 + 35 + pythonImportsCheck = [ 36 + "hologram" 37 + ]; 38 + 39 + meta = with lib; { 40 + description = "A library for automatically generating Draft 7 JSON Schemas from Python dataclasses"; 41 + homepage = "https://github.com/dbt-labs/hologram"; 42 + license = licenses.mit; 43 + maintainers = with maintainers; [ mausch tjni ]; 44 + }; 45 + }
+1 -1
pkgs/development/python-modules/hpack/default.nix
··· 29 29 description = "Pure-Python HPACK header compression"; 30 30 homepage = "https://github.com/python-hyper/hpack"; 31 31 license = licenses.mit; 32 - maintainers = with maintainers; [ SuperSandro2000 ]; 32 + maintainers = with maintainers; [ ]; 33 33 }; 34 34 }
+1 -1
pkgs/development/python-modules/hstspreload/default.nix
··· 29 29 description = "Chromium HSTS Preload list as a Python package and updated daily"; 30 30 homepage = "https://github.com/sethmlarson/hstspreload"; 31 31 license = licenses.bsd3; 32 - maintainers = with maintainers; [ SuperSandro2000 ]; 32 + maintainers = with maintainers; [ ]; 33 33 }; 34 34 }
+1 -1
pkgs/development/python-modules/hyperframe/default.nix
··· 17 17 description = "HTTP/2 framing layer for Python"; 18 18 homepage = "https://github.com/python-hyper/hyperframe/"; 19 19 license = licenses.mit; 20 - maintainers = with maintainers; [ SuperSandro2000 ]; 20 + maintainers = with maintainers; [ ]; 21 21 }; 22 22 }
+1 -1
pkgs/development/python-modules/hypothesis/default.nix
··· 108 108 homepage = "https://github.com/HypothesisWorks/hypothesis"; 109 109 changelog = "https://hypothesis.readthedocs.io/en/latest/changes.html#v${lib.replaceStrings [ "." ] [ "-" ] version}"; 110 110 license = licenses.mpl20; 111 - maintainers = with maintainers; [ SuperSandro2000 ]; 111 + maintainers = with maintainers; [ ]; 112 112 }; 113 113 }
+1 -1
pkgs/development/python-modules/hypothesmith/default.nix
··· 57 57 description = "Hypothesis strategies for generating Python programs, something like CSmith"; 58 58 homepage = "https://github.com/Zac-HD/hypothesmith"; 59 59 license = licenses.mpl20; 60 - maintainers = with maintainers; [ SuperSandro2000 ]; 60 + maintainers = with maintainers; [ ]; 61 61 }; 62 62 }
+1 -1
pkgs/development/python-modules/impacket/default.nix
··· 47 47 homepage = "https://github.com/SecureAuthCorp/impacket"; 48 48 # Modified Apache Software License, Version 1.1 49 49 license = licenses.free; 50 - maintainers = with maintainers; [ SuperSandro2000 ]; 50 + maintainers = with maintainers; [ ]; 51 51 }; 52 52 }
+1 -1
pkgs/development/python-modules/incremental/default.nix
··· 39 39 homepage = "https://github.com/twisted/incremental"; 40 40 description = "Incremental is a small library that versions your Python projects"; 41 41 license = licenses.mit; 42 - maintainers = with maintainers; [ SuperSandro2000 ]; 42 + maintainers = with maintainers; [ ]; 43 43 }; 44 44 }; in incremental
+1 -1
pkgs/development/python-modules/inscriptis/default.nix
··· 39 39 homepage = "https://github.com/weblyzard/inscriptis"; 40 40 changelog = "https://github.com/weblyzard/inscriptis/releases/tag/${version}"; 41 41 license = licenses.asl20; 42 - maintainers = with maintainers; [ SuperSandro2000 ]; 42 + maintainers = with maintainers; [ ]; 43 43 }; 44 44 }
+18 -8
pkgs/development/python-modules/irc/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, isPy3k 2 - , six, jaraco_logging, jaraco_text, jaraco_stream, pytz, jaraco_itertools 3 - , setuptools-scm, jaraco_collections, importlib-metadata 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , isPy3k 5 + , six 6 + , jaraco-logging 7 + , jaraco-text 8 + , jaraco-stream 9 + , pytz 10 + , jaraco-itertools 11 + , setuptools-scm 12 + , jaraco-collections 13 + , importlib-metadata 4 14 }: 5 15 6 16 buildPythonPackage rec { ··· 20 30 propagatedBuildInputs = [ 21 31 six 22 32 importlib-metadata 23 - jaraco_logging 24 - jaraco_text 25 - jaraco_stream 33 + jaraco-logging 34 + jaraco-text 35 + jaraco-stream 26 36 pytz 27 - jaraco_itertools 28 - jaraco_collections 37 + jaraco-itertools 38 + jaraco-collections 29 39 ]; 30 40 31 41 doCheck = false;
+1 -1
pkgs/development/python-modules/isounidecode/default.nix
··· 18 18 description = "Python package for conversion and transliteration of unicode into ascii or iso-8859-1"; 19 19 homepage = "https://github.com/redvasily/isounidecode"; 20 20 license = licenses.bsd3; 21 - maintainers = with maintainers; [ SuperSandro2000 ]; 21 + maintainers = with maintainers; [ ]; 22 22 }; 23 23 }
+6 -6
pkgs/development/python-modules/jaraco-abode/default.nix
··· 5 5 , fetchFromGitHub 6 6 , fetchPypi 7 7 , importlib-resources 8 - , jaraco_classes 9 - , jaraco_collections 10 - , jaraco_itertools 8 + , jaraco-classes 9 + , jaraco-collections 10 + , jaraco-itertools 11 11 , jaraco-context 12 12 , jaraco-net 13 13 , keyring ··· 55 55 colorlog 56 56 keyring 57 57 requests-toolbelt 58 - jaraco_collections 58 + jaraco-collections 59 59 jaraco-context 60 - jaraco_classes 60 + jaraco-classes 61 61 jaraco-net 62 62 more-itertools 63 63 importlib-resources 64 64 bx-py-utils 65 65 platformdirs 66 - jaraco_itertools 66 + jaraco-itertools 67 67 ]; 68 68 69 69 nativeCheckInputs = [
+4 -4
pkgs/development/python-modules/jaraco-email/default.nix
··· 6 6 , fetchpatch 7 7 , setuptools 8 8 , setuptools-scm 9 - , jaraco_text 10 - , jaraco_collections 9 + , jaraco-text 10 + , jaraco-collections 11 11 , keyring 12 12 , pytestCheckHook 13 13 }: ··· 48 48 SETUPTOOLS_SCM_PRETEND_VERSION = version; 49 49 50 50 propagatedBuildInputs = [ 51 - jaraco_text 52 - jaraco_collections 51 + jaraco-text 52 + jaraco-collections 53 53 keyring 54 54 ]; 55 55
+8 -8
pkgs/development/python-modules/jaraco-net/default.nix
··· 11 11 , keyring 12 12 , requests 13 13 , feedparser 14 - , jaraco_text 15 - , jaraco_logging 14 + , jaraco-text 15 + , jaraco-logging 16 16 , jaraco-email 17 - , jaraco_functools 18 - , jaraco_collections 17 + , jaraco-functools 18 + , jaraco-collections 19 19 , path 20 20 , python-dateutil 21 21 , pathvalidate ··· 58 58 keyring 59 59 requests 60 60 feedparser 61 - jaraco_text 62 - jaraco_logging 61 + jaraco-text 62 + jaraco-logging 63 63 jaraco-email 64 - jaraco_functools 65 - jaraco_collections 64 + jaraco-functools 65 + jaraco-collections 66 66 path 67 67 python-dateutil 68 68 pathvalidate
+4 -4
pkgs/development/python-modules/jaraco-test/default.nix
··· 5 5 , setuptools 6 6 , setuptools-scm 7 7 , toml 8 - , jaraco_functools 8 + , jaraco-functools 9 9 , jaraco-context 10 10 , more-itertools 11 - , jaraco_collections 11 + , jaraco-collections 12 12 , pytestCheckHook 13 13 }: 14 14 ··· 32 32 33 33 propagatedBuildInputs = [ 34 34 toml 35 - jaraco_functools 35 + jaraco-functools 36 36 jaraco-context 37 37 more-itertools 38 - jaraco_collections 38 + jaraco-collections 39 39 ]; 40 40 41 41 nativeCheckInputs = [
+1 -1
pkgs/development/python-modules/jaraco_classes/default.nix pkgs/development/python-modules/jaraco-classes/default.nix
··· 5 5 }: 6 6 7 7 buildPythonPackage rec { 8 - pname = "jaraco.classes"; 8 + pname = "jaraco-classes"; 9 9 version = "3.1.1"; 10 10 disabled = isPy27; 11 11
+7 -6
pkgs/development/python-modules/jaraco_collections/default.nix pkgs/development/python-modules/jaraco-collections/default.nix
··· 3 3 , fetchPypi 4 4 , setuptools 5 5 , setuptools-scm 6 - , jaraco_classes 7 - , jaraco_text 6 + , jaraco-classes 7 + , jaraco-text 8 8 }: 9 9 10 10 buildPythonPackage rec { 11 - pname = "jaraco.collections"; 11 + pname = "jaraco-collections"; 12 12 version = "4.3.0"; 13 13 format = "pyproject"; 14 14 15 15 src = fetchPypi { 16 - inherit pname version; 16 + pname = "jaraco.collections"; 17 + inherit version; 17 18 hash = "sha256-dP/CP8z+5N4KLr9VajNnW2o8AD1jNZR9MSKgvIgiyOQ="; 18 19 }; 19 20 ··· 30 31 env.SETUPTOOLS_SCM_PRETEND_VERSION = version; 31 32 32 33 propagatedBuildInputs = [ 33 - jaraco_classes 34 - jaraco_text 34 + jaraco-classes 35 + jaraco-text 35 36 ]; 36 37 37 38 pythonNamespaces = [ "jaraco" ];
+3 -2
pkgs/development/python-modules/jaraco_functools/default.nix pkgs/development/python-modules/jaraco-functools/default.nix
··· 6 6 }: 7 7 8 8 buildPythonPackage rec { 9 - pname = "jaraco.functools"; 9 + pname = "jaraco-functools"; 10 10 version = "3.6.0"; 11 11 format = "pyproject"; 12 12 13 13 src = fetchPypi { 14 - inherit pname version; 14 + pname = "jaraco.functools"; 15 + inherit version; 15 16 hash = "sha256-Lho74Rq67O5fWrjdWJY4voMEzEy5E2H+Xmg/S22ft6M="; 16 17 }; 17 18
+3 -2
pkgs/development/python-modules/jaraco_itertools/default.nix pkgs/development/python-modules/jaraco-itertools/default.nix
··· 3 3 }: 4 4 5 5 buildPythonPackage rec { 6 - pname = "jaraco.itertools"; 6 + pname = "jaraco-itertools"; 7 7 version = "6.2.1"; 8 8 format = "pyproject"; 9 9 10 10 src = fetchPypi { 11 - inherit pname version; 11 + pname = "jaraco.itertools"; 12 + inherit version; 12 13 hash = "sha256-YJjts3xrgCPzeU1CWIoTv3WyygK0D/l5XIRry+DBtGw="; 13 14 }; 14 15
pkgs/development/python-modules/jaraco_logging/default.nix pkgs/development/python-modules/jaraco-logging/default.nix
+3 -2
pkgs/development/python-modules/jaraco_stream/default.nix pkgs/development/python-modules/jaraco-stream/default.nix
··· 1 1 { buildPythonPackage, fetchPypi, setuptools-scm, six }: 2 2 3 3 buildPythonPackage rec { 4 - pname = "jaraco.stream"; 4 + pname = "jaraco-stream"; 5 5 version = "3.0.3"; 6 6 7 7 src = fetchPypi { 8 - inherit pname version; 8 + pname = "jaraco.stream"; 9 + inherit version; 9 10 sha256 = "3af4b0441090ee65bd6dde930d29f93f50c4a2fe6048e2a9d288285f5e4dc441"; 10 11 }; 11 12
+5 -4
pkgs/development/python-modules/jaraco_text/default.nix pkgs/development/python-modules/jaraco-text/default.nix
··· 4 4 , pythonOlder 5 5 , autocommand 6 6 , importlib-resources 7 - , jaraco_functools 7 + , jaraco-functools 8 8 , jaraco-context 9 9 , inflect 10 10 , pathlib2 ··· 13 13 }: 14 14 15 15 buildPythonPackage rec { 16 - pname = "jaraco.text"; 16 + pname = "jaraco-text"; 17 17 version = "3.11.1"; 18 18 format = "pyproject"; 19 19 20 20 disabled = pythonOlder "3.6"; 21 21 22 22 src = fetchPypi { 23 - inherit pname version; 23 + pname = "jaraco.text"; 24 + inherit version; 24 25 hash = "sha256-Mzpd8hSPcTlxhgfN81L+HZUWKXGnKZw4Dcwk2rAWiYA="; 25 26 }; 26 27 ··· 35 36 propagatedBuildInputs = [ 36 37 autocommand 37 38 jaraco-context 38 - jaraco_functools 39 + jaraco-functools 39 40 inflect 40 41 ] ++ lib.optionals (pythonOlder "3.9") [ 41 42 importlib-resources
-4
pkgs/development/python-modules/jupyter-server/default.nix
··· 16 16 , tornado 17 17 , pyzmq 18 18 , ipykernel 19 - , ipython_genutils 20 19 , traitlets 21 20 , jupyter-core 22 21 , jupyter-client ··· 30 29 , anyio 31 30 , websocket-client 32 31 , requests 33 - , requests-unixsocket 34 32 }: 35 33 36 34 buildPythonPackage rec { ··· 55 53 jinja2 56 54 tornado 57 55 pyzmq 58 - ipython_genutils 59 56 traitlets 60 57 jupyter-core 61 58 jupyter-client ··· 68 65 prometheus-client 69 66 anyio 70 67 websocket-client 71 - requests-unixsocket 72 68 ]; 73 69 74 70 nativeCheckInputs = [
+1 -1
pkgs/development/python-modules/jupyterlab-widgets/default.nix
··· 25 25 description = "Jupyter Widgets JupyterLab Extension"; 26 26 homepage = "https://github.com/jupyter-widgets/ipywidgets"; 27 27 license = licenses.bsd3; 28 - maintainers = with maintainers; [ jonringer SuperSandro2000 ]; 28 + maintainers = with maintainers; [ jonringer ]; 29 29 }; 30 30 }
+2 -2
pkgs/development/python-modules/keyring/default.nix
··· 6 6 , setuptools-scm 7 7 , importlib-metadata 8 8 , dbus-python 9 - , jaraco_classes 9 + , jaraco-classes 10 10 , jeepney 11 11 , secretstorage 12 12 , pytestCheckHook ··· 28 28 ]; 29 29 30 30 propagatedBuildInputs = [ 31 - jaraco_classes 31 + jaraco-classes 32 32 ] ++ lib.optionals stdenv.isLinux [ 33 33 jeepney 34 34 secretstorage
+1 -1
pkgs/development/python-modules/kubernetes/default.nix
··· 68 68 description = "Kubernetes Python client"; 69 69 homepage = "https://github.com/kubernetes-client/python"; 70 70 license = licenses.asl20; 71 - maintainers = with maintainers; [ lsix SuperSandro2000 ]; 71 + maintainers = with maintainers; [ lsix ]; 72 72 }; 73 73 }
+6 -4
pkgs/development/python-modules/langchain/default.nix
··· 62 62 , chardet 63 63 , requests-toolbelt 64 64 , neo4j 65 - , langchainplus-sdk 65 + , langsmith 66 66 # test dependencies 67 67 , pytest-vcr 68 68 , pytest-asyncio ··· 80 80 81 81 buildPythonPackage rec { 82 82 pname = "langchain"; 83 - version = "0.0.229"; 83 + version = "0.0.240"; 84 84 format = "pyproject"; 85 85 86 86 disabled = pythonOlder "3.8"; ··· 89 89 owner = "hwchase17"; 90 90 repo = "langchain"; 91 91 rev = "refs/tags/v${version}"; 92 - hash = "sha256-9hPF+0bEcFGH2oop3e513kBp6UeUEBlPXD+2pZ4dCi0="; 92 + hash = "sha256-7UwAdOzEgu3K/Gfq8D/GHNGxD6KhSx0xGMxtmpdnYxQ="; 93 93 }; 94 + 95 + sourceRoot = "source/libs/langchain"; 94 96 95 97 postPatch = '' 96 98 substituteInPlace langchain/utilities/bash.py \ ··· 227 229 # azure-ai-formrecognizer 228 230 # azure-ai-vision 229 231 # azure-cognitiveservices-speech 230 - langchainplus-sdk 232 + langsmith 231 233 ]; 232 234 }; 233 235
+54
pkgs/development/python-modules/langsmith/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , poetry-core 5 + , pydantic 6 + , requests 7 + , pytestCheckHook 8 + , pytest-asyncio 9 + }: 10 + 11 + buildPythonPackage { 12 + pname = "langsmith"; 13 + version = "0.0.14"; 14 + format = "pyproject"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "langchain-ai"; 18 + repo = "langchainplus-sdk"; 19 + # there are no correct tags 20 + # https://github.com/langchain-ai/langchainplus-sdk/issues/105 21 + rev = "092f67222e4beabca0f51ba03f1ee028f916da63"; 22 + hash = "sha256-U8fs16Uq80EB7Ey5YuQhUKKI9DOXJWlabM5JdoDnWP0="; 23 + }; 24 + 25 + sourceRoot = "source/python"; 26 + 27 + nativeBuildInputs = [ 28 + poetry-core 29 + ]; 30 + 31 + propagatedBuildInputs = [ 32 + pydantic 33 + requests 34 + ]; 35 + 36 + nativeCheckInputs = [ 37 + pytest-asyncio 38 + pytestCheckHook 39 + ]; 40 + 41 + disabledTests = [ 42 + # these tests require network access 43 + "integration_tests" 44 + ]; 45 + 46 + pythonImportsCheck = [ "langsmith" ]; 47 + 48 + meta = with lib; { 49 + description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform"; 50 + homepage = "https://github.com/langchain-ai/langchainplus-sdk"; 51 + license = licenses.mit; 52 + maintainers = with maintainers; [ natsukium ]; 53 + }; 54 + }
+1 -1
pkgs/development/python-modules/ldapdomaindump/default.nix
··· 37 37 homepage = "https://github.com/dirkjanm/ldapdomaindump/"; 38 38 changelog = "https://github.com/dirkjanm/ldapdomaindump/releases/tag/v${version}"; 39 39 license = licenses.mit; 40 - maintainers = with maintainers; [ SuperSandro2000 ]; 40 + maintainers = with maintainers; [ ]; 41 41 }; 42 42 }
+1 -1
pkgs/development/python-modules/ldaptor/default.nix
··· 46 46 description = "A Pure-Python Twisted library for LDAP"; 47 47 homepage = "https://github.com/twisted/ldaptor"; 48 48 license = licenses.mit; 49 - maintainers = with maintainers; [ SuperSandro2000 ]; 49 + maintainers = with maintainers; [ ]; 50 50 }; 51 51 }
+12 -8
pkgs/development/python-modules/libcst/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "libcst"; 22 - version = "0.4.9"; 22 + version = "1.0.1"; 23 23 format = "pyproject"; 24 24 25 25 disabled = pythonOlder "3.7"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "instagram"; 29 - repo = pname; 29 + repo = "libcst"; 30 30 rev = "refs/tags/v${version}"; 31 - hash = "sha256-ikddvKsvXMNHMfA9jUhvyiDXII0tTs/rE97IGI/azgA="; 31 + hash = "sha256-FgQE8ofRXQs/zHh7AKscXu0deN3IG+Nk/h+a09Co5R8="; 32 32 }; 33 33 34 34 cargoDeps = rustPlatform.fetchCargoTarball { 35 35 inherit src; 36 36 sourceRoot = "source/${cargoRoot}"; 37 37 name = "${pname}-${version}"; 38 - hash = "sha256-FWQGv3E5X+VEnTYD0uKN6W4USth8EQlEGbYgUAWZ5EQ="; 38 + hash = "sha256-rPB3bAMdvjgsT3jkEDoWatW8LPwgIaFSbFPqiqANtBY="; 39 39 }; 40 40 41 41 cargoRoot = "native"; 42 42 43 43 postPatch = '' 44 - # test try to format files, which isn't necessary when consuming releases 45 - sed -i libcst/codegen/generate.py \ 46 - -e '/ufmt/c\ pass' 44 + # avoid infinite recursion by not formatting the release files 45 + substituteInPlace libcst/codegen/generate.py \ 46 + --replace '"ufmt"' '"true"' 47 47 ''; 48 48 49 49 SETUPTOOLS_SCM_PRETEND_VERSION = version; ··· 70 70 ]; 71 71 72 72 preCheck = '' 73 + # otherwise import libcst.native fails 74 + cp build/lib.*/libcst/native.* libcst/ 75 + 73 76 ${python.interpreter} -m libcst.codegen.generate visitors 74 77 ${python.interpreter} -m libcst.codegen.generate return_types 78 + 75 79 # Can't run all tests due to circular dependency on hypothesmith -> libcst 76 80 rm -r {libcst/tests,libcst/codegen/tests,libcst/m*/tests} 77 81 ''; ··· 89 93 description = "Concrete Syntax Tree (CST) parser and serializer library for Python"; 90 94 homepage = "https://github.com/Instagram/libcst"; 91 95 license = with licenses; [ mit asl20 psfl ]; 92 - maintainers = with maintainers; [ SuperSandro2000 ]; 96 + maintainers = with maintainers; [ ]; 93 97 }; 94 98 }
+1 -1
pkgs/development/python-modules/libsass/default.nix
··· 39 39 description = "Python binding for libsass to compile Sass/SCSS"; 40 40 homepage = "https://sass.github.io/libsass-python/"; 41 41 license = licenses.mit; 42 - maintainers = with maintainers; [ SuperSandro2000 ]; 42 + maintainers = with maintainers; [ ]; 43 43 }; 44 44 }
+1 -1
pkgs/development/python-modules/m2r/default.nix
··· 38 38 homepage = "https://github.com/miyakogi/m2r"; 39 39 description = "Markdown to reStructuredText converter"; 40 40 license = licenses.mit; 41 - maintainers = with maintainers; [ AndersonTorres SuperSandro2000 ]; 41 + maintainers = with maintainers; [ AndersonTorres ]; 42 42 # https://github.com/miyakogi/m2r/issues/66 43 43 broken = versionAtLeast mistune.version "2"; 44 44 };
+1 -1
pkgs/development/python-modules/magic-wormhole-mailbox-server/default.nix
··· 57 57 homepage = "https://github.com/warner/magic-wormhole-mailbox-server"; 58 58 changelog = "https://github.com/magic-wormhole/magic-wormhole-mailbox-server/blob/${version}/NEWS.md"; 59 59 license = licenses.mit; 60 - maintainers = with maintainers; [ SuperSandro2000 ]; 60 + maintainers = with maintainers; [ ]; 61 61 }; 62 62 }
+1 -1
pkgs/development/python-modules/magic-wormhole-transit-relay/default.nix
··· 27 27 description = "Transit Relay server for Magic-Wormhole"; 28 28 homepage = "https://github.com/magic-wormhole/magic-wormhole-transit-relay"; 29 29 license = licenses.mit; 30 - maintainers = with maintainers; [ SuperSandro2000 ]; 30 + maintainers = with maintainers; [ ]; 31 31 }; 32 32 }
+1 -1
pkgs/development/python-modules/magic-wormhole/default.nix
··· 70 70 description = "Securely transfer data between computers"; 71 71 homepage = "https://github.com/magic-wormhole/magic-wormhole"; 72 72 license = licenses.mit; 73 - maintainers = with maintainers; [ asymmetric SuperSandro2000 ]; 73 + maintainers = with maintainers; [ asymmetric ]; 74 74 mainProgram = "wormhole"; 75 75 }; 76 76 }
+36
pkgs/development/python-modules/minimal-snowplow-tracker/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , requests 5 + , six 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "minimal-snowplow-tracker"; 10 + version = "0.0.2"; 11 + format = "setuptools"; 12 + 13 + src = fetchPypi { 14 + inherit pname version; 15 + hash = "sha256-rKv3Vy2w5/XL9pg9SV7vVAgfcb45IzDrOq25zLOdqqQ="; 16 + }; 17 + 18 + propagatedBuildInputs = [ 19 + requests 20 + six 21 + ]; 22 + 23 + # has no tests 24 + doCheck = false; 25 + 26 + pythonImportsCheck = [ 27 + "snowplow_tracker" 28 + ]; 29 + 30 + meta = with lib; { 31 + description = "Minimal snowplow event tracker"; 32 + homepage = "https://github.com/dbt-labs/snowplow-python-tracker"; 33 + license = licenses.asl20; 34 + maintainers = with maintainers; [ mausch tjni ]; 35 + }; 36 + }
+2 -2
pkgs/development/python-modules/mkdocstrings-python/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "mkdocstrings-python"; 14 - version = "1.2.0"; 14 + version = "1.2.1"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "mkdocstrings"; 21 21 repo = "python"; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-Q+KsVfImmJekDI5TIFREXlB/G5NGtoenHz6sZOVaP5c="; 23 + hash = "sha256-65c63K8u3aWJFeMIi0jOeRA7RXc1OWumys0LUOvgBEU="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+1 -1
pkgs/development/python-modules/msgpack/default.nix
··· 35 35 homepage = "https://github.com/msgpack/msgpack-python"; 36 36 changelog = "https://github.com/msgpack/msgpack-python/blob/v${version}/ChangeLog.rst"; 37 37 license = licenses.asl20; 38 - maintainers = with maintainers; [ SuperSandro2000 ]; 38 + maintainers = with maintainers; [ ]; 39 39 }; 40 40 }
+1 -1
pkgs/development/python-modules/mypy/default.nix
··· 114 114 description = "Optional static typing for Python"; 115 115 homepage = "https://www.mypy-lang.org"; 116 116 license = licenses.mit; 117 - maintainers = with maintainers; [ martingms lnl7 SuperSandro2000 ]; 117 + maintainers = with maintainers; [ martingms lnl7 ]; 118 118 }; 119 119 }
+1 -1
pkgs/development/python-modules/mypy/extensions.nix
··· 42 42 description = "Experimental type system extensions for programs checked with the mypy typechecker"; 43 43 homepage = "https://www.mypy-lang.org"; 44 44 license = licenses.mit; 45 - maintainers = with maintainers; [ martingms lnl7 SuperSandro2000 ]; 45 + maintainers = with maintainers; [ martingms lnl7 ]; 46 46 }; 47 47 }
+1 -1
pkgs/development/python-modules/noiseprotocol/default.nix
··· 21 21 description = "Noise Protocol Framework"; 22 22 homepage = "https://github.com/plizonczyk/noiseprotocol/"; 23 23 license = licenses.mit; 24 - maintainers = with maintainers; [ SuperSandro2000 ]; 24 + maintainers = with maintainers; [ ]; 25 25 }; 26 26 }
+1 -1
pkgs/development/python-modules/packaging/default.nix
··· 40 40 description = "Core utilities for Python packages"; 41 41 homepage = "https://github.com/pypa/packaging"; 42 42 license = with licenses; [ bsd2 asl20 ]; 43 - maintainers = with maintainers; [ bennofs SuperSandro2000 ]; 43 + maintainers = with maintainers; [ bennofs ]; 44 44 }; 45 45 }; 46 46 in
+1 -1
pkgs/development/python-modules/paramiko/default.nix
··· 78 78 between python scripts. All major ciphers and hash methods are 79 79 supported. SFTP client and server mode are both supported too. 80 80 ''; 81 - maintainers = with maintainers; [ SuperSandro2000 ]; 81 + maintainers = with maintainers; [ ]; 82 82 }; 83 83 }
+1 -1
pkgs/development/python-modules/parver/default.nix
··· 42 42 description = "Allows parsing and manipulation of PEP 440 version numbers"; 43 43 homepage = "https://github.com/RazerM/parver"; 44 44 license = licenses.mit; 45 - maintainers = with maintainers; [ SuperSandro2000 ]; 45 + maintainers = with maintainers; [ ]; 46 46 }; 47 47 }
+1 -1
pkgs/development/python-modules/patator/default.nix
··· 59 59 description = "Multi-purpose brute-forcer"; 60 60 homepage = "https://github.com/lanjelot/patator"; 61 61 license = licenses.gpl2Only; 62 - maintainers = with maintainers; [ y0no SuperSandro2000 ]; 62 + maintainers = with maintainers; [ y0no ]; 63 63 }; 64 64 }
+1 -1
pkgs/development/python-modules/pathlib2/default.nix
··· 31 31 description = "This module offers classes representing filesystem paths with semantics appropriate for different operating systems."; 32 32 homepage = "https://pypi.org/project/pathlib2/"; 33 33 license = with licenses; [ mit ]; 34 - maintainers = with maintainers; [ SuperSandro2000 ]; 34 + maintainers = with maintainers; [ ]; 35 35 }; 36 36 }
+1 -1
pkgs/development/python-modules/phx-class-registry/default.nix
··· 29 29 description = "Factory and registry pattern for Python classes"; 30 30 homepage = "https://class-registry.readthedocs.io/en/latest/"; 31 31 license = licenses.mit; 32 - maintainers = with maintainers; [ kevincox SuperSandro2000 ]; 32 + maintainers = with maintainers; [ kevincox ]; 33 33 }; 34 34 }
+1 -1
pkgs/development/python-modules/pillow-simd/default.nix
··· 32 32 Currently, Pillow-SIMD can be compiled with SSE4 (default) or AVX2 support. 33 33 ''; 34 34 license = "http://www.pythonware.com/products/pil/license.htm"; 35 - maintainers = with maintainers; [ SuperSandro2000 ]; 35 + maintainers = with maintainers; [ ]; 36 36 }; 37 37 } // args )
+1 -1
pkgs/development/python-modules/pillow/default.nix
··· 46 46 processing and graphics capabilities. 47 47 ''; 48 48 license = licenses.hpnd; 49 - maintainers = with maintainers; [ goibhniu prikhi SuperSandro2000 ]; 49 + maintainers = with maintainers; [ goibhniu prikhi ]; 50 50 }; 51 51 } // args )
+1 -1
pkgs/development/python-modules/pkgconfig/default.nix
··· 45 45 description = "Interface Python with pkg-config"; 46 46 homepage = "https://github.com/matze/pkgconfig"; 47 47 license = licenses.mit; 48 - maintainers = with maintainers; [ SuperSandro2000 ]; 48 + maintainers = with maintainers; [ ]; 49 49 }; 50 50 }
+1 -1
pkgs/development/python-modules/playwright/default.nix
··· 94 94 description = "Python version of the Playwright testing and automation library"; 95 95 homepage = "https://github.com/microsoft/playwright-python"; 96 96 license = licenses.asl20; 97 - maintainers = with maintainers; [ techknowlogick yrd SuperSandro2000 ]; 97 + maintainers = with maintainers; [ techknowlogick yrd ]; 98 98 platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ]; 99 99 }; 100 100 }
+1 -1
pkgs/development/python-modules/proto-plus/default.nix
··· 28 28 description = "Beautiful, idiomatic protocol buffers in Python"; 29 29 homepage = "https://github.com/googleapis/proto-plus-python"; 30 30 license = licenses.asl20; 31 - maintainers = with maintainers; [ ruuda SuperSandro2000 ]; 31 + maintainers = with maintainers; [ ruuda ]; 32 32 }; 33 33 }
+1 -1
pkgs/development/python-modules/publicsuffix2/default.nix
··· 27 27 description = "Get a public suffix for a domain name using the Public Suffix List"; 28 28 homepage = "https://github.com/nexB/python-publicsuffix2"; 29 29 license = licenses.mpl20; 30 - maintainers = with maintainers; [ SuperSandro2000 ]; 30 + maintainers = with maintainers; [ ]; 31 31 }; 32 32 }
+1 -1
pkgs/development/python-modules/py-ecc/default.nix
··· 38 38 description = "ECC pairing and bn_128 and bls12_381 curve operations"; 39 39 homepage = "https://github.com/ethereum/py_ecc"; 40 40 license = licenses.mit; 41 - maintainers = with maintainers; [ SuperSandro2000 ]; 41 + maintainers = with maintainers; [ ]; 42 42 }; 43 43 }
+1 -1
pkgs/development/python-modules/py-eth-sig-utils/default.nix
··· 39 39 description = "Collection of functions to generate hashes for signing on Ethereum"; 40 40 homepage = "https://github.com/rmeissner/py-eth-sig-utils"; 41 41 license = licenses.mit; 42 - maintainers = with maintainers; [ SuperSandro2000 ]; 42 + maintainers = with maintainers; [ ]; 43 43 # TODO: upstream is stale and doesn't not work with the new `eth-abi` package any more. 44 44 broken = true; 45 45 };
+1 -1
pkgs/development/python-modules/pyasn1/default.nix
··· 25 25 homepage = "https://pyasn1.readthedocs.io"; 26 26 changelog = "https://github.com/etingof/pyasn1/blob/master/CHANGES.rst"; 27 27 license = licenses.bsd2; 28 - maintainers = with maintainers; [ SuperSandro2000 ]; 28 + maintainers = with maintainers; [ ]; 29 29 }; 30 30 }
+1 -1
pkgs/development/python-modules/pyaxmlparser/default.nix
··· 20 20 homepage = "https://github.com/appknox/pyaxmlparser"; 21 21 # Files from Androguard are licensed ASL 2.0 22 22 license = with licenses; [ mit asl20 ]; 23 - maintainers = with maintainers; [ SuperSandro2000 ]; 23 + maintainers = with maintainers; [ ]; 24 24 }; 25 25 }
+1 -1
pkgs/development/python-modules/pycurl/default.nix
··· 82 82 homepage = "http://pycurl.io/"; 83 83 description = "Python Interface To The cURL library"; 84 84 license = with licenses; [ lgpl2Only mit ]; 85 - maintainers = with maintainers; [ SuperSandro2000 ]; 85 + maintainers = with maintainers; [ ]; 86 86 }; 87 87 }
+1 -1
pkgs/development/python-modules/pygments/default.nix
··· 46 46 description = "A generic syntax highlighter"; 47 47 mainProgram = "pygmentize"; 48 48 license = licenses.bsd2; 49 - maintainers = with maintainers; [ SuperSandro2000 ]; 49 + maintainers = with maintainers; [ ]; 50 50 }; 51 51 }; 52 52 in pygments
+1 -1
pkgs/development/python-modules/pygnmi/default.nix
··· 41 41 description = "Pure Python gNMI client to manage network functions and collect telemetry"; 42 42 homepage = "https://github.com/akarneliuk/pygnmi"; 43 43 license = licenses.bsd3; 44 - maintainers = with maintainers; [ SuperSandro2000 ]; 44 + maintainers = with maintainers; [ ]; 45 45 }; 46 46 }
+1 -1
pkgs/development/python-modules/pylint/default.nix
··· 115 115 - epylint: Emacs and Flymake compatible Pylint 116 116 ''; 117 117 license = licenses.gpl1Plus; 118 - maintainers = with maintainers; [ SuperSandro2000 ]; 118 + maintainers = with maintainers; [ ]; 119 119 }; 120 120 }
+1 -1
pkgs/development/python-modules/pyls-spyder/default.nix
··· 30 30 description = "Spyder extensions for the python-language-server"; 31 31 homepage = "https://github.com/spyder-ide/pyls-spyder"; 32 32 license = licenses.mit; 33 - maintainers = with maintainers; [ SuperSandro2000 ]; 33 + maintainers = with maintainers; [ ]; 34 34 }; 35 35 }
+1 -1
pkgs/development/python-modules/pylyrics/default.nix
··· 25 25 description = "A Pythonic Implementation of lyrics.wikia.com for getting lyrics of songs "; 26 26 homepage = "https://github.com/geekpradd/PyLyrics"; 27 27 license = licenses.mit; 28 - maintainers = with maintainers; [ SuperSandro2000 ]; 28 + maintainers = with maintainers; [ ]; 29 29 }; 30 30 }
+1 -1
pkgs/development/python-modules/pyopenssl/default.nix
··· 95 95 homepage = "https://github.com/pyca/pyopenssl"; 96 96 changelog = "https://github.com/pyca/pyopenssl/blob/${version}/CHANGELOG.rst"; 97 97 license = licenses.asl20; 98 - maintainers = with maintainers; [ SuperSandro2000 ]; 98 + maintainers = with maintainers; [ ]; 99 99 }; 100 100 }
+1 -1
pkgs/development/python-modules/pypiserver/default.nix
··· 53 53 homepage = "https://github.com/pypiserver/pypiserver"; 54 54 description = "Minimal PyPI server for use with pip/easy_install"; 55 55 license = with licenses; [ mit zlib ]; 56 - maintainers = with maintainers; [ austinbutler SuperSandro2000 ]; 56 + maintainers = with maintainers; [ austinbutler ]; 57 57 }; 58 58 }
+1 -1
pkgs/development/python-modules/pysqlcipher3/default.nix
··· 19 19 description = "Python 3 bindings for SQLCipher"; 20 20 homepage = "https://github.com/rigglemania/pysqlcipher3/"; 21 21 license = licenses.zlib; 22 - maintainers = with maintainers; [ SuperSandro2000 ]; 22 + maintainers = with maintainers; [ ]; 23 23 }; 24 24 }
+1 -1
pkgs/development/python-modules/pytest-snapshot/default.nix
··· 48 48 description = "A plugin to enable snapshot testing with pytest"; 49 49 homepage = "https://github.com/joseph-roitman/pytest-snapshot/"; 50 50 license = licenses.mit; 51 - maintainers = with maintainers; [ SuperSandro2000 ]; 51 + maintainers = with maintainers; [ ]; 52 52 }; 53 53 }
+4
pkgs/development/python-modules/pytest-testinfra/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , pythonAtLeast 4 5 , setuptools-scm 5 6 , ansible-core 6 7 , paramiko ··· 51 52 "test_user_connection" 52 53 "test_sudo" 53 54 "test_docker_encoding" 55 + ] ++ lib.optionals (pythonAtLeast "3.11") [ 56 + # broken because salt package only built for python 3.10 57 + "test_backend_importables" 54 58 ]; 55 59 56 60 disabledTestPaths = [
+3 -2
pkgs/development/python-modules/python-gnupg/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "python-gnupg"; 11 - version = "0.5.0"; 11 + version = "0.5.1"; 12 12 13 13 format = "pyproject"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - hash = "sha256-cHWOOH/A4MS628s5T2GsvmizSXCo/tfg98iUaf4XkSo="; 17 + hash = "sha256-VnS61Ok4dsCw0xl+MU1/lC05AYvzHiuDP2eIpoE8P7g="; 18 18 }; 19 19 20 20 postPatch = '' ··· 42 42 meta = with lib; { 43 43 description = "API for the GNU Privacy Guard (GnuPG)"; 44 44 homepage = "https://github.com/vsajip/python-gnupg"; 45 + changelog = "https://github.com/vsajip/python-gnupg/releases/tag/${version}"; 45 46 license = licenses.bsd3; 46 47 maintainers = with maintainers; [ copumpkin ]; 47 48 };
+1 -1
pkgs/development/python-modules/python-magic/default.nix
··· 43 43 description = "A python interface to the libmagic file type identification library"; 44 44 homepage = "https://github.com/ahupp/python-magic"; 45 45 license = licenses.mit; 46 - maintainers = with maintainers; [ SuperSandro2000 ]; 46 + maintainers = with maintainers; [ ]; 47 47 }; 48 48 }
+1 -1
pkgs/development/python-modules/recline/default.nix
··· 33 33 description = "This library helps you quickly implement an interactive command-based application"; 34 34 homepage = "https://github.com/NetApp/recline"; 35 35 license = licenses.bsd3; 36 - maintainers = with maintainers; [ SuperSandro2000 ]; 36 + maintainers = with maintainers; [ ]; 37 37 }; 38 38 }
+1 -1
pkgs/development/python-modules/rfc3986/default.nix
··· 34 34 description = "Validating URI References per RFC 3986"; 35 35 homepage = "https://rfc3986.readthedocs.org"; 36 36 license = licenses.asl20; 37 - maintainers = with maintainers; [ SuperSandro2000 ]; 37 + maintainers = with maintainers; [ ]; 38 38 }; 39 39 }
+1 -1
pkgs/development/python-modules/rlp/default.nix
··· 37 37 description = "RLP serialization library"; 38 38 homepage = "https://github.com/ethereum/pyrlp"; 39 39 license = licenses.mit; 40 - maintainers = with maintainers; [ SuperSandro2000 ]; 40 + maintainers = with maintainers; [ ]; 41 41 }; 42 42 }
+1 -1
pkgs/development/python-modules/ruamel-base/default.nix
··· 22 22 description = "Common routines for ruamel packages"; 23 23 homepage = "https://sourceforge.net/projects/ruamel-base/"; 24 24 license = licenses.mit; 25 - maintainers = with maintainers; [ SuperSandro2000 ]; 25 + maintainers = with maintainers; [ ]; 26 26 }; 27 27 }
+1 -1
pkgs/development/python-modules/ruamel-yaml-clib/default.nix
··· 24 24 description = "YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order"; 25 25 homepage = "https://sourceforge.net/projects/ruamel-yaml-clib/"; 26 26 license = licenses.mit; 27 - maintainers = with maintainers; [ SuperSandro2000 ]; 27 + maintainers = with maintainers; [ ]; 28 28 }; 29 29 }
+1 -1
pkgs/development/python-modules/ruamel-yaml/default.nix
··· 28 28 description = "YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order"; 29 29 homepage = "https://sourceforge.net/projects/ruamel-yaml/"; 30 30 license = licenses.mit; 31 - maintainers = with maintainers; [ SuperSandro2000 ]; 31 + maintainers = with maintainers; [ ]; 32 32 }; 33 33 }
+2 -2
pkgs/development/python-modules/scancode-toolkit/default.nix
··· 23 23 , html5lib 24 24 , importlib-metadata 25 25 , intbitset 26 - , jaraco_functools 26 + , jaraco-functools 27 27 , javaproperties 28 28 , jinja2 29 29 , jsonstreams ··· 94 94 html5lib 95 95 importlib-metadata 96 96 intbitset 97 - jaraco_functools 97 + jaraco-functools 98 98 javaproperties 99 99 jinja2 100 100 jsonstreams
+1 -1
pkgs/development/python-modules/selenium/default.nix
··· 54 54 description = "Bindings for Selenium WebDriver"; 55 55 homepage = "https://selenium.dev/"; 56 56 license = licenses.asl20; 57 - maintainers = with maintainers; [ jraygauthier SuperSandro2000 ]; 57 + maintainers = with maintainers; [ jraygauthier ]; 58 58 }; 59 59 }
+1 -1
pkgs/development/python-modules/setuptools-rust/default.nix
··· 33 33 homepage = "https://github.com/PyO3/setuptools-rust"; 34 34 changelog = "https://github.com/PyO3/setuptools-rust/releases/tag/v${version}"; 35 35 license = licenses.mit; 36 - maintainers = with maintainers; [ SuperSandro2000 ]; 36 + maintainers = with maintainers; [ ]; 37 37 }; 38 38 }
+1 -1
pkgs/development/python-modules/setuptools-scm/default.nix
··· 49 49 homepage = "https://github.com/pypa/setuptools_scm/"; 50 50 description = "Handles managing your python package versions in scm metadata"; 51 51 license = licenses.mit; 52 - maintainers = with maintainers; [ SuperSandro2000 ]; 52 + maintainers = with maintainers; [ ]; 53 53 }; 54 54 }
+1 -1
pkgs/development/python-modules/snapshottest/default.nix
··· 28 28 description = "Snapshot testing for pytest, unittest, Django, and Nose"; 29 29 homepage = "https://github.com/syrusakbary/snapshottest"; 30 30 license = licenses.mit; 31 - maintainers = with maintainers; [ SuperSandro2000 ]; 31 + maintainers = with maintainers; [ ]; 32 32 }; 33 33 }
+5
pkgs/development/python-modules/snowflake-connector-python/default.nix
··· 7 7 , fetchPypi 8 8 , filelock 9 9 , idna 10 + , keyring 10 11 , oscrypto 11 12 , pycryptodomex 12 13 , pyjwt ··· 52 53 setuptools 53 54 typing-extensions 54 55 ]; 56 + 57 + passthru.optional-dependencies = { 58 + secure-local-storage = [ keyring ]; 59 + }; 55 60 56 61 # Tests require encrypted secrets, see 57 62 # https://github.com/snowflakedb/snowflake-connector-python/tree/master/.github/workflows/parameters
+1 -1
pkgs/development/python-modules/sortedcontainers/default.nix
··· 32 32 description = "Python Sorted Container Types: SortedList, SortedDict, and SortedSet"; 33 33 homepage = "https://grantjenks.com/docs/sortedcontainers/"; 34 34 license = licenses.asl20; 35 - maintainers = with maintainers; [ SuperSandro2000 ]; 35 + maintainers = with maintainers; [ ]; 36 36 }; 37 37 }; 38 38 in
+1 -1
pkgs/development/python-modules/sphinxcontrib-bibtex/default.nix
··· 36 36 description = "A Sphinx extension for BibTeX style citations"; 37 37 homepage = "https://github.com/mcmtroffaes/sphinxcontrib-bibtex"; 38 38 license = licenses.bsd2; 39 - maintainers = with maintainers; [ SuperSandro2000 ]; 39 + maintainers = with maintainers; [ ]; 40 40 }; 41 41 }
+1 -1
pkgs/development/python-modules/sphinxcontrib-programoutput/default.nix
··· 27 27 description = "Sphinx extension to include program output"; 28 28 homepage = "https://github.com/NextThought/sphinxcontrib-programoutput"; 29 29 license = licenses.bsd2; 30 - maintainers = with maintainers; [ SuperSandro2000 ]; 30 + maintainers = with maintainers; [ ]; 31 31 }; 32 32 }
+1 -1
pkgs/development/python-modules/systemd/default.nix
··· 51 51 homepage = "https://www.freedesktop.org/software/systemd/python-systemd/"; 52 52 changelog = "https://github.com/systemd/python-systemd/blob/v${version}/NEWS"; 53 53 license = licenses.lgpl21Plus; 54 - maintainers = with maintainers; [ SuperSandro2000 ]; 54 + maintainers = with maintainers; [ ]; 55 55 }; 56 56 }
+2 -2
pkgs/development/python-modules/tempora/default.nix
··· 8 8 9 9 # runtime 10 10 , pytz 11 - , jaraco_functools 11 + , jaraco-functools 12 12 13 13 # tests 14 14 , freezegun ··· 33 33 ]; 34 34 35 35 propagatedBuildInputs = [ 36 - jaraco_functools 36 + jaraco-functools 37 37 pytz 38 38 ]; 39 39
+1 -1
pkgs/development/python-modules/three-merge/default.nix
··· 19 19 description = "Simple library for merging two strings with respect to a base one"; 20 20 homepage = "https://github.com/spyder-ide/three-merge"; 21 21 license = licenses.mit; 22 - maintainers = with maintainers; [ SuperSandro2000 ]; 22 + maintainers = with maintainers; [ ]; 23 23 }; 24 24 }
+1 -1
pkgs/development/python-modules/tomli/default.nix
··· 39 39 description = "A Python library for parsing TOML, fully compatible with TOML v1.0.0"; 40 40 homepage = "https://github.com/hukkin/tomli"; 41 41 license = licenses.mit; 42 - maintainers = with maintainers; [ veehaitch SuperSandro2000 ]; 42 + maintainers = with maintainers; [ veehaitch ]; 43 43 }; 44 44 }
+1 -1
pkgs/development/python-modules/tornado/default.nix
··· 42 42 description = "A web framework and asynchronous networking library"; 43 43 homepage = "https://www.tornadoweb.org/"; 44 44 license = licenses.asl20; 45 - maintainers = with maintainers; [ SuperSandro2000 ]; 45 + maintainers = with maintainers; [ ]; 46 46 }; 47 47 }
+1 -1
pkgs/development/python-modules/treq/default.nix
··· 35 35 homepage = "https://github.com/twisted/treq"; 36 36 description = "Requests-like API built on top of twisted.web's Agent"; 37 37 license = licenses.mit; 38 - maintainers = with maintainers; [ SuperSandro2000 ]; 38 + maintainers = with maintainers; [ ]; 39 39 }; 40 40 }
+1 -1
pkgs/development/python-modules/trio-websocket/default.nix
··· 54 54 description = "WebSocket client and server implementation for Python Trio"; 55 55 homepage = "https://github.com/HyperionGray/trio-websocket"; 56 56 license = licenses.mit; 57 - maintainers = with maintainers; [ SuperSandro2000 ]; 57 + maintainers = with maintainers; [ ]; 58 58 }; 59 59 }
+1 -1
pkgs/development/python-modules/twisted/default.nix
··· 202 202 homepage = "https://github.com/twisted/twisted"; 203 203 description = "Asynchronous networking framework written in Python"; 204 204 license = licenses.mit; 205 - maintainers = with maintainers; [ SuperSandro2000 ]; 205 + maintainers = with maintainers; [ ]; 206 206 }; 207 207 }
+1 -1
pkgs/development/python-modules/typed-ast/default.nix
··· 45 45 description = "Python AST modules with type comment support"; 46 46 homepage = "https://github.com/python/typed_ast"; 47 47 license = licenses.asl20; 48 - maintainers = with maintainers; [ SuperSandro2000 ]; 48 + maintainers = with maintainers; [ ]; 49 49 }; 50 50 }
+1 -1
pkgs/development/python-modules/types-typed-ast/default.nix
··· 24 24 description = "Typing stubs for typed-ast"; 25 25 homepage = "https://github.com/python/typeshed"; 26 26 license = licenses.asl20; 27 - maintainers = with maintainers; [ SuperSandro2000 veehaitch ]; 27 + maintainers = with maintainers; [ veehaitch ]; 28 28 }; 29 29 }
+1 -1
pkgs/development/python-modules/tzdata/default.nix
··· 37 37 description = "Provider of IANA time zone data"; 38 38 homepage = "https://github.com/python/tzdata"; 39 39 license = licenses.asl20; 40 - maintainers = with maintainers; [ SuperSandro2000 ]; 40 + maintainers = with maintainers; [ ]; 41 41 }; 42 42 }
+1 -1
pkgs/development/python-modules/ujson/default.nix
··· 30 30 description = "Ultra fast JSON encoder and decoder"; 31 31 homepage = "https://github.com/ultrajson/ultrajson"; 32 32 license = licenses.bsd3; 33 - maintainers = with maintainers; [ SuperSandro2000 ]; 33 + maintainers = with maintainers; [ ]; 34 34 }; 35 35 }
+1 -1
pkgs/development/python-modules/unittest-xml-reporting/default.nix
··· 39 39 homepage = "https://github.com/xmlrunner/unittest-xml-reporting"; 40 40 description = "unittest-based test runner with Ant/JUnit like XML reporting"; 41 41 license = licenses.bsd2; 42 - maintainers = with maintainers; [ rprospero SuperSandro2000 ]; 42 + maintainers = with maintainers; [ rprospero ]; 43 43 }; 44 44 }
+1 -1
pkgs/development/python-modules/urwid/default.nix
··· 40 40 description = "A full-featured console (xterm et al.) user interface library"; 41 41 homepage = "https://urwid.org/"; 42 42 license = licenses.lgpl21Plus; 43 - maintainers = with maintainers; [ SuperSandro2000 ]; 43 + maintainers = with maintainers; [ ]; 44 44 }; 45 45 }
+1 -1
pkgs/development/python-modules/wasmer/default.nix
··· 73 73 homepage = "https://github.com/wasmerio/wasmer-python"; 74 74 license = licenses.mit; 75 75 platforms = platforms.unix; 76 - maintainers = with maintainers; [ SuperSandro2000 ]; 76 + maintainers = with maintainers; [ ]; 77 77 }; 78 78 }; 79 79 in
+1 -1
pkgs/development/python-modules/wcag-contrast-ratio/default.nix
··· 29 29 description = "Library for computing contrast ratios, as required by WCAG 2.0"; 30 30 homepage = "https://github.com/gsnedders/wcag-contrast-ratio"; 31 31 license = licenses.mit; 32 - maintainers = with maintainers; [ SuperSandro2000 ]; 32 + maintainers = with maintainers; [ ]; 33 33 }; 34 34 }
+1 -1
pkgs/development/python-modules/wcmatch/default.nix
··· 38 38 description = "Wilcard File Name matching library"; 39 39 homepage = "https://github.com/facelessuser/wcmatch"; 40 40 license = licenses.mit; 41 - maintainers = with maintainers; [ SuperSandro2000 ]; 41 + maintainers = with maintainers; [ ]; 42 42 }; 43 43 }
+1 -1
pkgs/development/python-modules/web/default.nix
··· 29 29 ''; 30 30 homepage = "https://webpy.org/"; 31 31 license = licenses.publicDomain; 32 - maintainers = with maintainers; [ layus SuperSandro2000 ]; 32 + maintainers = with maintainers; [ layus ]; 33 33 }; 34 34 35 35 }
+1 -1
pkgs/development/python-modules/webauthn/default.nix
··· 48 48 homepage = "https://github.com/duo-labs/py_webauthn"; 49 49 changelog = "https://github.com/duo-labs/py_webauthn/blob/v${version}/CHANGELOG.md"; 50 50 license = licenses.bsd3; 51 - maintainers = with maintainers; [ SuperSandro2000 ]; 51 + maintainers = with maintainers; [ ]; 52 52 }; 53 53 }
+1 -1
pkgs/development/python-modules/werkzeug/default.nix
··· 69 69 utility libraries. 70 70 ''; 71 71 license = licenses.bsd3; 72 - maintainers = with maintainers; [ SuperSandro2000 ]; 72 + maintainers = with maintainers; [ ]; 73 73 }; 74 74 }
+1 -1
pkgs/development/python-modules/wsgi-intercept/default.nix
··· 49 49 description = "Module that acts as a WSGI application in place of a real URI for testing"; 50 50 homepage = "https://github.com/cdent/wsgi-intercept"; 51 51 license = licenses.mit; 52 - maintainers = with maintainers; [ SuperSandro2000 ]; 52 + maintainers = with maintainers; [ ]; 53 53 }; 54 54 }
+1 -1
pkgs/development/python-modules/wsproto/default.nix
··· 26 26 description = "Pure Python, pure state-machine WebSocket implementation"; 27 27 homepage = "https://github.com/python-hyper/wsproto/"; 28 28 license = licenses.mit; 29 - maintainers = with maintainers; [ SuperSandro2000 ]; 29 + maintainers = with maintainers; [ ]; 30 30 }; 31 31 }
+1 -1
pkgs/development/python-modules/xmltodict/default.nix
··· 26 26 description = "Makes working with XML feel like you are working with JSON"; 27 27 homepage = "https://github.com/martinblech/xmltodict"; 28 28 license = licenses.mit; 29 - maintainers = with maintainers; [ SuperSandro2000 ]; 29 + maintainers = with maintainers; [ ]; 30 30 }; 31 31 }
+1 -1
pkgs/development/python-modules/yowsup/default.nix
··· 47 47 homepage = "https://github.com/tgalal/yowsup"; 48 48 description = "The python WhatsApp library"; 49 49 license = licenses.gpl3Plus; 50 - maintainers = with maintainers; [ SuperSandro2000 ]; 50 + maintainers = with maintainers; [ ]; 51 51 }; 52 52 }
+3 -3
pkgs/development/python-modules/zipp/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , func-timeout 5 - , jaraco_itertools 5 + , jaraco-itertools 6 6 , pythonOlder 7 7 , setuptools-scm 8 8 }: ··· 28 28 29 29 nativeCheckInputs = [ 30 30 func-timeout 31 - jaraco_itertools 31 + jaraco-itertools 32 32 ]; 33 33 34 34 pythonImportsCheck = [ ··· 43 43 description = "Pathlib-compatible object wrapper for zip files"; 44 44 homepage = "https://github.com/jaraco/zipp"; 45 45 license = licenses.mit; 46 - maintainers = with maintainers; [ SuperSandro2000 ]; 46 + maintainers = with maintainers; [ ]; 47 47 }; 48 48 }; in zipp
+1 -1
pkgs/development/python2-modules/setuptools-scm/default.nix
··· 19 19 homepage = "https://github.com/pypa/setuptools_scm/"; 20 20 description = "Handles managing your python package versions in scm metadata"; 21 21 license = licenses.mit; 22 - maintainers = with maintainers; [ SuperSandro2000 ]; 22 + maintainers = with maintainers; [ ]; 23 23 }; 24 24 }
+1 -1
pkgs/development/tools/delve/default.nix
··· 44 44 meta = with lib; { 45 45 description = "debugger for the Go programming language"; 46 46 homepage = "https://github.com/go-delve/delve"; 47 - maintainers = with maintainers; [ SuperSandro2000 vdemeester ]; 47 + maintainers = with maintainers; [ vdemeester ]; 48 48 license = licenses.mit; 49 49 mainProgram = "dlv"; 50 50 };
+69
pkgs/development/tools/enochecker-test/default.nix
··· 1 + { lib 2 + , buildPythonApplication 3 + , fetchPypi 4 + , pythonOlder 5 + , pythonRelaxDepsHook 6 + 7 + , certifi 8 + , charset-normalizer 9 + , enochecker-core 10 + , exceptiongroup 11 + , idna 12 + , iniconfig 13 + , jsons 14 + , packaging 15 + , pluggy 16 + , pytest 17 + , requests 18 + , tomli 19 + , typish 20 + , urllib3 21 + }: 22 + 23 + buildPythonApplication rec { 24 + pname = "enochecker-test"; 25 + version = "0.9.0"; 26 + format = "setuptools"; 27 + 28 + disabled = pythonOlder "3.8"; 29 + 30 + src = fetchPypi { 31 + inherit version; 32 + pname = "enochecker_test"; 33 + hash = "sha256-M0RTstFePU7O51YVEncVDuuR6F7R8mfdKbO0j7k/o8Q="; 34 + }; 35 + 36 + nativeBuildInputs = [ 37 + pythonRelaxDepsHook 38 + ]; 39 + 40 + pythonRelaxDeps = true; 41 + 42 + propagatedBuildInputs = [ 43 + certifi 44 + charset-normalizer 45 + enochecker-core 46 + exceptiongroup 47 + idna 48 + iniconfig 49 + jsons 50 + packaging 51 + pluggy 52 + pytest 53 + requests 54 + tomli 55 + typish 56 + urllib3 57 + ]; 58 + 59 + # tests require network access 60 + doCheck = false; 61 + 62 + meta = with lib; { 63 + description = "Automatically test services/checker using the enochecker API"; 64 + homepage = "https://github.com/enowars/enochecker_test"; 65 + changelog = "https://github.com/enowars/enochecker_test/releases/tag/v${version}"; 66 + license = licenses.mit; 67 + maintainers = with maintainers; [ fwc ]; 68 + }; 69 + }
+2 -2
pkgs/development/tools/fsautocomplete/default.nix
··· 5 5 in 6 6 buildDotnetModule rec { 7 7 pname = "fsautocomplete"; 8 - version = "0.60.1"; 8 + version = "0.61.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "fsharp"; 12 12 repo = "FsAutoComplete"; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-8tXwAuljW1dJVX3jg2K5LmN+Is8sneM4OFm9n+Dkt+I="; 14 + sha256 = "sha256-e5td3mHTjlwcxZDDJmqKmn9Tfhtp4EVJ8C8Qn1xyeBo="; 15 15 }; 16 16 17 17 nugetDeps = ./deps.nix;
+1 -1
pkgs/development/tools/go-outline/default.nix
··· 16 16 meta = with lib; { 17 17 description = "Utility to extract JSON representation of declarations from a Go source file"; 18 18 homepage = "https://github.com/ramya-rao-a/go-outline"; 19 - maintainers = with maintainers; [ SuperSandro2000 vdemeester ]; 19 + maintainers = with maintainers; [ vdemeester ]; 20 20 license = licenses.mit; 21 21 }; 22 22 }
+1 -1
pkgs/development/tools/golangci-lint-langserver/default.nix
··· 22 22 description = "Language server for golangci-lint"; 23 23 homepage = "https://github.com/nametake/golangci-lint-langserver"; 24 24 license = licenses.mit; 25 - maintainers = with maintainers; [ SuperSandro2000 ]; 25 + maintainers = with maintainers; [ ]; 26 26 }; 27 27 }
+1 -1
pkgs/development/tools/gotest/default.nix
··· 19 19 description = "go test with colors"; 20 20 homepage = "https://github.com/rakyll/gotest"; 21 21 license = licenses.bsd3; 22 - maintainers = with maintainers; [ SuperSandro2000 ]; 22 + maintainers = with maintainers; [ ]; 23 23 }; 24 24 }
+1 -1
pkgs/development/tools/luaformatter/default.nix
··· 32 32 homepage = "https://github.com/Koihik/LuaFormatter"; 33 33 license = licenses.asl20; 34 34 platforms = platforms.all; 35 - maintainers = with maintainers; [ figsoda SuperSandro2000 ]; 35 + maintainers = with maintainers; [ figsoda ]; 36 36 mainProgram = "lua-format"; 37 37 }; 38 38 }
+1 -1
pkgs/development/tools/misc/act/default.nix
··· 29 29 homepage = "https://github.com/nektos/act"; 30 30 changelog = "https://github.com/nektos/act/releases/tag/v${version}"; 31 31 license = licenses.mit; 32 - maintainers = with maintainers; [ Br1ght0ne SuperSandro2000 ]; 32 + maintainers = with maintainers; [ Br1ght0ne ]; 33 33 }; 34 34 }
+1 -1
pkgs/development/tools/misc/strace-analyzer/default.nix
··· 29 29 description = "Analyzes strace output"; 30 30 homepage = "https://github.com/wookietreiber/strace-analyzer"; 31 31 license = licenses.gpl3Plus; 32 - maintainers = with maintainers; [ SuperSandro2000 ]; 32 + maintainers = with maintainers; [ figsoda ]; 33 33 }; 34 34 }
+10 -1
pkgs/development/tools/nc4nix/default.nix
··· 6 6 , fetchpatch 7 7 }: 8 8 9 - buildGoModule rec { 9 + buildGoModule { 10 10 pname = "nc4nix"; 11 11 version = "unstable-2023-06-06"; 12 12 ··· 24 24 url = "https://github.com/helsinki-systems/nc4nix/commit/a7bca4793cc12e87d381f12f6f8c00ae2ca02893.patch"; 25 25 sha256 = "sha256-0JxyhSQLtlgLtsMv82wMjQHGdmOoQ2dcPPNAw2cFByE="; 26 26 name = "switch_hash_calculation_method.patch"; 27 + }) 28 + 29 + # Fix invalid entries (pre-releases of apps are not to be taken into account, 30 + # but if only pre-releases are compatible with a given Nextcloud version, 31 + # invalid entries are generated) 32 + (fetchpatch { 33 + url = "https://github.com/helsinki-systems/nc4nix/commit/c48131b5ca382585fd3294d51d59acc1e92fadb1.patch"; 34 + sha256 = "sha256-/zc3Smjd6CksC5wUvoB6uAyTzPcIgqimb+zASIuTft0="; 35 + excludes = [ "25.json" "26.json" "27.json" ]; 27 36 }) 28 37 ]; 29 38
+4 -4
pkgs/development/tools/packer/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "packer"; 10 - version = "1.9.1"; 10 + version = "1.9.2"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "hashicorp"; 14 14 repo = "packer"; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-imdVXgW3w0Bv4qWPJIRhZPim7c0WRHKvRS/uBk7nzaI="; 16 + sha256 = "sha256-ptWy54UCPXPm2vxiysZSRFn4DMQOBORaajipFC+npRw="; 17 17 }; 18 18 19 - vendorHash = "sha256-aRjSYnb8xyjI4Gn4I91aP3evCqimlL5zR6jpgWNFRME="; 19 + vendorHash = "sha256-svoXUaiQprik/aZfpEmIuBZdOGMcdY0nG59fMYt9c3c="; 20 20 21 21 subPackages = [ "." ]; 22 22 ··· 32 32 description = "A tool for creating identical machine images for multiple platforms from a single source configuration"; 33 33 homepage = "https://www.packer.io"; 34 34 license = licenses.mpl20; 35 - maintainers = with maintainers; [ cstrahan zimbatm ma27 techknowlogick ]; 35 + maintainers = with maintainers; [ cstrahan zimbatm ma27 techknowlogick qjoly ]; 36 36 changelog = "https://github.com/hashicorp/packer/blob/v${version}/CHANGELOG.md"; 37 37 }; 38 38 }
+1 -1
pkgs/development/tools/pup/default.nix
··· 17 17 description = "Parsing HTML at the command line"; 18 18 homepage = "https://github.com/ericchiang/pup"; 19 19 license = licenses.mit; 20 - maintainers = with maintainers; [ SuperSandro2000 yana ]; 20 + maintainers = with maintainers; [ yana ]; 21 21 }; 22 22 }
+2 -2
pkgs/development/tools/pyenv/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "pyenv"; 9 - version = "2.3.22"; 9 + version = "2.3.23"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "pyenv"; 13 13 repo = "pyenv"; 14 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-kIjhxr39r8PT3pMvUQohkS2QHwX3QwtZn9n1Z7/nOxc="; 15 + hash = "sha256-gvxun/izEC7KQVfuPe0yjYKqJyqaoTFYNSAldhfBKVc="; 16 16 }; 17 17 18 18 postPatch = ''
+2
pkgs/development/tools/rust/cargo-local-registry/default.nix
··· 35 35 zlib 36 36 ] ++ lib.optionals stdenv.isDarwin [ 37 37 darwin.apple_sdk.frameworks.Security 38 + ] ++ lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [ 39 + darwin.apple_sdk.frameworks.CoreFoundation 38 40 ]; 39 41 40 42 # tests require internet access
+4 -4
pkgs/development/tools/selenium/chromedriver/default.nix
··· 14 14 }; 15 15 16 16 x86_64-darwin = { 17 - system = "mac64"; 17 + system = "mac-x64"; 18 18 sha256 = upstream-info.sha256_darwin; 19 19 }; 20 20 21 21 aarch64-darwin = { 22 - system = "mac_arm64"; 22 + system = "mac-arm64"; 23 23 sha256 = upstream-info.sha256_darwin_aarch64; 24 24 }; 25 25 }; ··· 41 41 version = upstream-info.version; 42 42 43 43 src = fetchurl { 44 - url = "https://chromedriver.storage.googleapis.com/${version}/chromedriver_${spec.system}.zip"; 44 + url = "https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/${version}/${spec.system}/chromedriver-${spec.system}.zip"; 45 45 sha256 = spec.sha256; 46 46 }; 47 47 ··· 50 50 unpackPhase = "unzip $src"; 51 51 52 52 installPhase = '' 53 - install -m755 -D chromedriver $out/bin/chromedriver 53 + install -m755 -D "chromedriver-${spec.system}/chromedriver" $out/bin/chromedriver 54 54 '' + lib.optionalString (!stdenv.isDarwin) '' 55 55 patchelf --set-interpreter ${glibc.out}/lib/ld-linux-x86-64.so.2 $out/bin/chromedriver 56 56 wrapProgram "$out/bin/chromedriver" --prefix LD_LIBRARY_PATH : "${libs}"
+90
pkgs/games/fteqw/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchsvn 4 + , gzip 5 + , libvorbis 6 + , libmad 7 + , SDL2 8 + , SDL2_mixer 9 + , libpng 10 + , alsa-lib 11 + , gnutls 12 + , zlib 13 + , libjpeg 14 + , vulkan-loader 15 + , vulkan-headers 16 + , speex 17 + , libopus 18 + , xorg 19 + , libGL 20 + }@attrs: 21 + { 22 + fteqw = import ./generic.nix (rec { 23 + pname = "fteqw"; 24 + 25 + buildFlags = [ "m-rel" ]; 26 + 27 + nativeBuildInputs = [ 28 + vulkan-headers 29 + ]; 30 + 31 + buildInputs = [ 32 + gzip 33 + libvorbis 34 + libmad 35 + SDL2 36 + SDL2_mixer 37 + libpng 38 + alsa-lib 39 + gnutls 40 + libjpeg 41 + vulkan-loader 42 + speex 43 + libopus 44 + xorg.libXrandr 45 + xorg.libXcursor 46 + ]; 47 + 48 + postFixup = '' 49 + patchelf $out/bin/${pname} \ 50 + --add-needed ${SDL2}/lib/libSDL2.so \ 51 + --add-needed ${libGL}/lib/libGLX.so \ 52 + --add-needed ${libGL}/lib/libGL.so \ 53 + --add-needed ${lib.getLib gnutls}/lib/libgnutls.so \ 54 + --add-needed ${vulkan-loader}/lib/libvulkan.so 55 + ''; 56 + 57 + description = "A hybrid and versatile game engine"; 58 + } // attrs); 59 + 60 + fteqw-dedicated = import ./generic.nix (rec { 61 + pname = "fteqw-dedicated"; 62 + releaseFile = "fteqw-sv"; 63 + 64 + buildFlags = [ "sv-rel" ]; 65 + 66 + buildInputs = [ 67 + gnutls 68 + zlib 69 + ]; 70 + 71 + postFixup = '' 72 + patchelf $out/bin/${pname} \ 73 + --add-needed ${gnutls}/lib/libgnutls.so \ 74 + ''; 75 + 76 + description = "Dedicated server for FTEQW"; 77 + } // attrs); 78 + 79 + fteqcc = import ./generic.nix ({ 80 + pname = "fteqcc"; 81 + 82 + buildFlags = [ "qcc-rel" ]; 83 + 84 + buildInputs = [ 85 + zlib 86 + ]; 87 + 88 + description = "User friendly QuakeC compiler"; 89 + } // attrs); 90 + }
+60
pkgs/games/fteqw/generic.nix
··· 1 + { lib 2 + , fetchsvn 3 + , stdenv 4 + , libopus 5 + , xorg 6 + , pname 7 + , releaseFile ? pname 8 + , buildFlags 9 + , buildInputs 10 + , nativeBuildInputs ? [] 11 + , postFixup ? "" 12 + , description 13 + , ... }: 14 + 15 + stdenv.mkDerivation { 16 + inherit pname buildFlags buildInputs nativeBuildInputs postFixup; 17 + version = "unstable-2022-08-09"; 18 + 19 + src = fetchsvn { 20 + url = "https://svn.code.sf.net/p/fteqw/code/trunk"; 21 + rev = "6303"; 22 + sha256 = "sha256-tSTFX59iVUvndPRdREayKpkQ+YCYKCMQe2PXZfnTgPQ="; 23 + }; 24 + 25 + makeFlags = [ 26 + "PKGCONFIG=$(PKG_CONFIG)" 27 + "-C" "engine" 28 + ]; 29 + 30 + enableParallelBuilding = true; 31 + postPatch = '' 32 + substituteInPlace ./engine/Makefile \ 33 + --replace "I/usr/include/opus" "I${libopus.dev}/include/opus" 34 + substituteInPlace ./engine/gl/gl_vidlinuxglx.c \ 35 + --replace 'Sys_LoadLibrary("libXrandr"' 'Sys_LoadLibrary("${xorg.libXrandr}/lib/libXrandr.so"' 36 + ''; 37 + 38 + installPhase = '' 39 + runHook preInstall 40 + 41 + install -Dm755 engine/release/${releaseFile} $out/bin/${pname} 42 + 43 + runHook postInstall 44 + ''; 45 + 46 + meta = with lib; { 47 + inherit description; 48 + homepage = "https://fte.triptohell.info"; 49 + longDescription = '' 50 + FTE is a game engine baed on QuakeWorld able to 51 + play games such as Quake 1, 2, 3, and Hexen 2. 52 + It includes various features such as extended map 53 + limits, vulkan and OpenGL renderers, a dedicated 54 + server, and fteqcc, for easier QuakeC development 55 + ''; 56 + maintainers = with maintainers; [ necrophcodr ]; 57 + license = licenses.gpl2Plus; 58 + platforms = platforms.linux; 59 + }; 60 + }
+1 -1
pkgs/os-specific/linux/kernel/htmldocs.nix
··· 51 51 homepage = "https://www.kernel.org/doc/htmldocs/"; 52 52 platforms = platforms.linux; 53 53 inherit (linux_latest.meta) license; 54 - maintainers = with maintainers; [ SuperSandro2000 ]; 54 + maintainers = with maintainers; [ ]; 55 55 }; 56 56 }
+3 -3
pkgs/os-specific/linux/rtl8821au/default.nix
··· 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "rtl8821au"; 5 - version = "${kernel.version}-unstable-2023-07-20"; 5 + version = "${kernel.version}-unstable-2023-07-23"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "morrownr"; 9 9 repo = "8821au-20210708"; 10 - rev = "072413261b6966b0c666898e69d7d41fb281094f"; 11 - hash = "sha256-yC9knXR+bZwQ4S22zG188b3p3iTzUAFbvSqOFdne7po="; 10 + rev = "0dc022287b0ab534efa885881eaa65c5503291be"; 11 + hash = "sha256-pLRBWdqlv9A39VbCS8dymTCJHcwJooqD8v6mTbOsBz0="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ bc nukeReferences ] ++ kernel.moduleBuildDependencies;
+23 -4
pkgs/os-specific/linux/tp_smapi/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, kernel, writeScript, coreutils, gnugrep, jq, curl, common-updater-scripts, runtimeShell 1 + { stdenv 2 + , lib 3 + , fetchFromGitHub 4 + , fetchpatch 5 + , kernel 6 + , writeScript 7 + , coreutils 8 + , gnugrep 9 + , jq 10 + , curl 11 + , common-updater-scripts 12 + , runtimeShell 2 13 }: 3 14 4 15 stdenv.mkDerivation rec { ··· 6 17 version = "0.43"; 7 18 8 19 src = fetchFromGitHub { 9 - owner = "evgeni"; 20 + owner = "linux-thinkpad"; 10 21 repo = "tp_smapi"; 11 22 rev = "tp-smapi/${version}"; 12 23 sha256 = "1rjb0njckczc2mj05cagvj0lkyvmyk6bw7wkiinv81lw8m90g77g"; 13 - name = "tp-smapi-${version}"; 14 24 }; 25 + 26 + patches = [ 27 + # update DEFINE_SEMAPHORE usage for linux 6.4+ 28 + # https://github.com/linux-thinkpad/tp_smapi/pull/45 29 + (fetchpatch { 30 + url = "https://github.com/linux-thinkpad/tp_smapi/commit/0c3398b1acf2a2cabd9cee91dc3fe3d35805fa8b.patch"; 31 + hash = "sha256-J/WvijrpHGwFOZMMxnHdNin5eh8vViTcNb4nwsCqsLs="; 32 + }) 33 + ]; 15 34 16 35 nativeBuildInputs = kernel.moduleBuildDependencies; 17 36 ··· 39 58 40 59 meta = { 41 60 description = "IBM ThinkPad hardware functions driver"; 42 - homepage = "https://github.com/evgeni/tp_smapi"; 61 + homepage = "https://github.com/linux-thinkpad/tp_smapi"; 43 62 license = lib.licenses.gpl2; 44 63 maintainers = [ ]; 45 64 # driver is only ment for linux thinkpads i think bellow platforms should cover it.
+15 -5
pkgs/servers/geospatial/pg_tileserv/default.nix
··· 1 - { lib, fetchFromGitHub, buildGoModule }: 1 + { lib, fetchFromGitHub, fetchpatch, buildGoModule }: 2 2 3 3 buildGoModule rec { 4 4 pname = "pg_tileserv"; 5 - version = "1.0.9"; 5 + version = "1.0.10"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "CrunchyData"; 9 - repo = pname; 9 + repo = "pg_tileserv"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-pNm802DJu5t+Y9QZU6wDUcAVpJTZ4SxDK0J61wzuuRE="; 11 + hash = "sha256-Y8GAmWpnXQGmFcy44wFUQGpA8OvT7u1rY1ZGNg1Qwgs="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-iw9bIh1Ngj5IGhrZwmSPciyaAR73msZ283TB0ibwt+c="; 14 + patches = [ 15 + # Without this, we get error messages like: 16 + # vendor/golang.org/x/sys/unix/syscall.go:83:16: unsafe.Slice requires go1.17 or later (-lang was set to go1.16; check go.mod) 17 + # The patch was generated by changing "go 1.15" to "go 1.17" and executing `go mod tidy`. 18 + (fetchpatch { 19 + url = "https://github.com/CrunchyData/pg_tileserv/commit/d8e01469344895267ead9fa35ee7bdb8f966a710.patch"; 20 + hash = "sha256-1P3dV8h51X+MEH2u1n6RxZvBPXBpQWrZBBCTOoCEWQU="; 21 + }) 22 + ]; 23 + 24 + vendorHash = "sha256-gXJFuvJ2d/e91TAtBzV3p2MwriJtUlIuNRw1+3iXJBA="; 15 25 16 26 ldflags = [ "-s" "-w" "-X main.programVersion=${version}" ]; 17 27
+3 -3
pkgs/servers/gotosocial/default.nix
··· 9 9 owner = "superseriousbusiness"; 10 10 repo = "gotosocial"; 11 11 12 - version = "0.9.0"; 13 - source-hash = "sha256-UZRIQTdVESCYv2KW7HUS2c4bS5qnB7wdwiYAgEJ60fU="; 14 - web-assets-hash = "sha256-OvgAr3obsK1JndLKmnjNY06dEbQKyP4xG/viBjCivvs="; 12 + version = "0.10.0"; 13 + source-hash = "sha256-SE+u89xAV6jJulU8XETlzTrqtwBYeMdNGyjk648b7h8="; 14 + web-assets-hash = "sha256-tYqnGqII8gf+aVd/J5lvhurhCrH8ihWYn7noBJbEgqA="; 15 15 16 16 web-assets = fetchurl { 17 17 url = "https://github.com/${owner}/${repo}/releases/download/v${version}/${repo}_${version}_web-assets.tar.gz";
+1 -1
pkgs/servers/http/nginx/generic.nix
··· 190 190 license = [ licenses.bsd2 ] 191 191 ++ concatMap (m: m.meta.license) modules; 192 192 platforms = platforms.all; 193 - maintainers = with maintainers; [ thoughtpolice raskin fpletz globin ajs124 ]; 193 + maintainers = with maintainers; [ fpletz ajs124 raitobezarius ]; 194 194 }; 195 195 }
+1 -1
pkgs/servers/matrix-synapse/sliding-sync/default.nix
··· 31 31 description = "A sliding sync implementation of MSC3575 for matrix"; 32 32 homepage = "https://github.com/matrix-org/sliding-sync"; 33 33 license = with licenses; [ asl20 ]; 34 - maintainers = with maintainers; [ SuperSandro2000 emilylange ]; 34 + maintainers = with maintainers; [ emilylange ]; 35 35 mainProgram = "syncv3"; 36 36 }; 37 37 }
+1 -1
pkgs/servers/monitoring/prometheus/pihole-exporter.nix
··· 17 17 description = "Prometheus exporter for PI-Hole's Raspberry PI ad blocker"; 18 18 homepage = "https://github.com/eko/pihole-exporter"; 19 19 license = licenses.mit; 20 - maintainers = with maintainers; [ SuperSandro2000 ]; 20 + maintainers = with maintainers; [ ]; 21 21 }; 22 22 }
+1 -1
pkgs/servers/monitoring/prometheus/unbound-exporter.nix
··· 31 31 description = "Prometheus exporter for Unbound DNS resolver"; 32 32 homepage = "https://github.com/svartalf/unbound-telemetry"; 33 33 license = licenses.mit; 34 - maintainers = with maintainers; [ SuperSandro2000 ]; 34 + maintainers = with maintainers; [ ]; 35 35 }; 36 36 }
-8
pkgs/servers/nextcloud/packages/27.json
··· 139 139 "agpl" 140 140 ] 141 141 }, 142 - "news": { 143 - "sha256": "", 144 - "url": "", 145 - "version": "", 146 - "description": "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)", 147 - "homepage": "https://github.com/nextcloud/news", 148 - "licenses": null 149 - }, 150 142 "notes": { 151 143 "sha256": "1g4ibrymsfd2bcvmyfyrl23z2kh4bgkwrgyacvdx1glk44di6sgc", 152 144 "url": "https://github.com/nextcloud-releases/notes/releases/download/v4.8.1/notes.tar.gz",
+9 -5
pkgs/servers/nitter/default.nix
··· 3 3 , nimPackages 4 4 , nixosTests 5 5 , substituteAll 6 + , unstableGitUpdater 6 7 }: 7 8 8 9 nimPackages.buildNimPackage rec { 9 10 pname = "nitter"; 10 - version = "unstable-2023-07-10"; 11 + version = "unstable-2023-07-21"; 11 12 12 13 src = fetchFromGitHub { 13 14 owner = "zedeus"; 14 15 repo = "nitter"; 15 - rev = "0bc3c153d9b38a3c02f321fb64a375fef6b97e8e"; 16 - hash = "sha256-msx14FZl2uRZvZjTlF7c3Va742HhiU6R2jdh4neIEV4="; 16 + rev = "cc5841df308506356d329662d0f0c2ec4713a35c"; 17 + hash = "sha256-QuWLoKy7suUCTYK79ghdf3o/FGFIDNyN1Iu69DFp6wg="; 17 18 }; 18 19 19 20 patches = [ ··· 52 53 cp -r public $out/share/nitter/public 53 54 ''; 54 55 56 + passthru = { 57 + tests = { inherit (nixosTests) nitter; }; 58 + updateScript = unstableGitUpdater {}; 59 + }; 60 + 55 61 meta = with lib; { 56 62 homepage = "https://github.com/zedeus/nitter"; 57 63 description = "Alternative Twitter front-end"; ··· 59 65 maintainers = with maintainers; [ erdnaxe infinidoge ]; 60 66 mainProgram = "nitter"; 61 67 }; 62 - 63 - passthru.tests = { inherit (nixosTests) nitter; }; 64 68 }
+1 -1
pkgs/servers/web-apps/changedetection-io/default.nix
··· 73 73 homepage = "https://github.com/dgtlmoon/changedetection.io"; 74 74 description = "Simplest self-hosted free open source website change detection tracking, monitoring and notification service"; 75 75 license = licenses.asl20; 76 - maintainers = with maintainers; [ SuperSandro2000 ]; 76 + maintainers = with maintainers; [ ]; 77 77 }; 78 78 }
+30
pkgs/shells/zsh/zsh-abbr/default.nix
··· 1 + { 2 + stdenv, 3 + lib, 4 + fetchFromGitHub, 5 + }: 6 + stdenv.mkDerivation rec { 7 + pname = "zsh-abbr"; 8 + version = "5.1.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "olets"; 12 + repo = "zsh-abbr"; 13 + rev = "v${version}"; 14 + hash = "sha256-iKL2vn7TmQr78y0Bn02DgNf9DS5jZyh6uK9MzYTFZaA"; 15 + }; 16 + 17 + strictDeps = true; 18 + 19 + installPhase = '' 20 + install -D zsh-abbr.zsh $out/share/zsh/${pname}/abbr.plugin.zsh 21 + ''; 22 + 23 + meta = with lib; { 24 + homepage = "https://github.com/olets/zsh-abbr"; 25 + description = "The zsh manager for auto-expanding abbreviations, inspired by fish shell"; 26 + license = with licenses; [cc-by-nc-nd-40 hl3]; 27 + maintainers = with maintainers; [icy-thought]; 28 + platforms = platforms.all; 29 + }; 30 + }
+1 -1
pkgs/tools/admin/chkcrontab/default.nix
··· 14 14 meta = with lib; { 15 15 description = "A tool to detect crontab errors"; 16 16 license = licenses.asl20; 17 - maintainers = with maintainers; [ SuperSandro2000 ]; 17 + maintainers = with maintainers; [ ]; 18 18 homepage = "https://github.com/lyda/chkcrontab"; 19 19 }; 20 20 }
+1 -1
pkgs/tools/admin/procs/default.nix
··· 30 30 homepage = "https://github.com/dalance/procs"; 31 31 changelog = "https://github.com/dalance/procs/raw/v${version}/CHANGELOG.md"; 32 32 license = licenses.mit; 33 - maintainers = with maintainers; [ Br1ght0ne SuperSandro2000 sciencentistguy ]; 33 + maintainers = with maintainers; [ Br1ght0ne sciencentistguy ]; 34 34 }; 35 35 }
+2 -2
pkgs/tools/graphics/vips/default.nix
··· 40 40 41 41 stdenv.mkDerivation rec { 42 42 pname = "vips"; 43 - version = "8.14.2"; 43 + version = "8.14.3"; 44 44 45 45 outputs = [ "bin" "out" "man" "dev" ] ++ lib.optionals (!stdenv.isDarwin) [ "devdoc" ]; 46 46 ··· 48 48 owner = "libvips"; 49 49 repo = "libvips"; 50 50 rev = "v${version}"; 51 - hash = "sha256-QUWZ11t2JEJBdpNuIY2uRiSL/hffRbV0SV5HowxWaME="; 51 + hash = "sha256-2BE/cDQU/FP0Lo9/gZiG1IAskTbnhBtzbcL2dRziHmU="; 52 52 # Remove unicode file names which leads to different checksums on HFS+ 53 53 # vs. other filesystems because of unicode normalisation. 54 54 postFetch = ''
+1 -1
pkgs/tools/inputmethods/ibus-engines/ibus-libthai/default.nix
··· 19 19 description = "Thai input method engine for IBus"; 20 20 license = licenses.lgpl21Plus; 21 21 platforms = platforms.unix; 22 - maintainers = with maintainers; [ SuperSandro2000 ]; 22 + maintainers = with maintainers; [ ]; 23 23 }; 24 24 }
+1 -1
pkgs/tools/misc/cope/default.nix
··· 23 23 description = "A colourful wrapper for terminal programs"; 24 24 homepage = "https://github.com/lotrfan/cope"; 25 25 license = with licenses; [ artistic1 gpl1Plus ]; 26 - maintainers = with maintainers; [ SuperSandro2000 ]; 26 + maintainers = with maintainers; [ ]; 27 27 }; 28 28 }
+1 -1
pkgs/tools/misc/diskonaut/default.nix
··· 20 20 description = "Terminal disk space navigator"; 21 21 homepage = "https://github.com/imsnif/diskonaut"; 22 22 license = licenses.mit; 23 - maintainers = with maintainers; [ evanjs SuperSandro2000 ]; 23 + maintainers = with maintainers; [ evanjs figsoda ]; 24 24 }; 25 25 }
+1 -1
pkgs/tools/misc/duf/default.nix
··· 25 25 homepage = "https://github.com/muesli/duf/"; 26 26 description = "Disk Usage/Free Utility"; 27 27 license = licenses.mit; 28 - maintainers = with maintainers; [ penguwin SuperSandro2000 ]; 28 + maintainers = with maintainers; [ figsoda penguwin ]; 29 29 }; 30 30 }
+1 -1
pkgs/tools/misc/dust/default.nix
··· 33 33 description = "du + rust = dust. Like du but more intuitive"; 34 34 homepage = "https://github.com/bootandy/dust"; 35 35 license = licenses.asl20; 36 - maintainers = with maintainers; [ infinisil SuperSandro2000 ]; 36 + maintainers = with maintainers; [ infinisil ]; 37 37 mainProgram = "dust"; 38 38 }; 39 39 }
+1 -1
pkgs/tools/misc/enjarify/default.nix
··· 30 30 description = "Tool for translating Dalvik bytecode to equivalent Java bytecode"; 31 31 homepage = "https://github.com/google/enjarify/"; 32 32 license = licenses.asl20; 33 - maintainers = with maintainers; [ SuperSandro2000 ]; 33 + maintainers = with maintainers; [ ]; 34 34 }; 35 35 }
+1 -1
pkgs/tools/misc/keychain/default.nix
··· 53 53 homepage = "https://www.funtoo.org/Keychain"; 54 54 license = licenses.gpl2; 55 55 platforms = platforms.unix; 56 - maintainers = with maintainers; [ sigma SuperSandro2000 ]; 56 + maintainers = with maintainers; [ sigma ]; 57 57 }; 58 58 }
+28
pkgs/tools/misc/mastotool/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "mastotool"; 8 + version = "0.2.4"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "muesli"; 12 + repo = "mastotool"; 13 + rev = "v${version}"; 14 + hash = "sha256-KmYUt2WXLY6i17dZ+o5HOTyMwbQnynY7IT43LIEN3B0="; 15 + }; 16 + 17 + vendorHash = "sha256-uQgLwH8Z8rBfyKHMm2JHO+H1gsHK25+c34bOnMcmquA="; 18 + 19 + ldflags = [ "-s" "-w" ]; 20 + 21 + meta = with lib; { 22 + description = "A collection of command-line tools to work with your Mastodon account"; 23 + homepage = "https://github.com/muesli/mastotool"; 24 + changelog = "https://github.com/muesli/mastotool/releases/tag/${src.rev}"; 25 + license = licenses.mit; 26 + maintainers = with maintainers; [ figsoda ]; 27 + }; 28 + }
+1 -1
pkgs/tools/misc/mdr/default.nix
··· 25 25 description = "MarkDown Renderer for the terminal"; 26 26 homepage = "https://github.com/MichaelMure/mdr"; 27 27 license = licenses.mit; 28 - maintainers = with maintainers; [ SuperSandro2000 ]; 28 + maintainers = with maintainers; [ figsoda ]; 29 29 }; 30 30 }
+1 -1
pkgs/tools/misc/ncdu/1.nix
··· 16 16 homepage = "https://dev.yorhel.nl/ncdu"; 17 17 license = licenses.mit; 18 18 platforms = platforms.all; 19 - maintainers = with maintainers; [ pSub SuperSandro2000 ]; 19 + maintainers = with maintainers; [ pSub ]; 20 20 }; 21 21 }
+1 -1
pkgs/tools/misc/ncdu/default.nix
··· 27 27 homepage = "https://dev.yorhel.nl/ncdu"; 28 28 license = licenses.mit; 29 29 platforms = platforms.all; 30 - maintainers = with maintainers; [ pSub SuperSandro2000 rodrgz ]; 30 + maintainers = with maintainers; [ pSub rodrgz ]; 31 31 }; 32 32 }
+1 -1
pkgs/tools/misc/ntfy/webpush.nix
··· 34 34 description = "cloudbell webpush notification support for ntfy"; 35 35 homepage = "https://dschep.github.io/ntfy-webpush/"; 36 36 license = licenses.mit; 37 - maintainers = with maintainers; [ SuperSandro2000 ]; 37 + maintainers = with maintainers; [ ]; 38 38 }; 39 39 }
+1 -1
pkgs/tools/misc/oggvideotools/default.nix
··· 42 42 description = "Toolbox for manipulating and creating Ogg video files"; 43 43 homepage = "http://www.streamnik.de/oggvideotools.html"; 44 44 license = licenses.gpl2Only; 45 - maintainers = with maintainers; [ SuperSandro2000 ]; 45 + maintainers = with maintainers; [ ]; 46 46 # Compilation error on Darwin: 47 47 # error: invalid argument '--std=c++0x' not allowed with 'C' 48 48 # make[2]: *** [src/libresample/CMakeFiles/resample.dir/build.make:76: src/libresample/CMakeFiles/resample.dir/filterkit.c.o] Error 1
+1 -1
pkgs/tools/misc/onefetch/default.nix
··· 59 59 homepage = "https://github.com/o2sh/onefetch"; 60 60 changelog = "https://github.com/o2sh/onefetch/blob/v${version}/CHANGELOG.md"; 61 61 license = licenses.mit; 62 - maintainers = with maintainers; [ Br1ght0ne figsoda kloenk SuperSandro2000 ]; 62 + maintainers = with maintainers; [ Br1ght0ne figsoda kloenk ]; 63 63 }; 64 64 }
+1 -1
pkgs/tools/misc/panicparse/default.nix
··· 22 22 description = "Crash your app in style (Golang)"; 23 23 homepage = "https://github.com/maruel/panicparse"; 24 24 license = licenses.asl20; 25 - maintainers = with maintainers; [ SuperSandro2000 ]; 25 + maintainers = with maintainers; [ ]; 26 26 }; 27 27 }
+35
pkgs/tools/misc/pc/default.nix
··· 1 + { lib 2 + , stdenv 3 + , byacc 4 + , fetchFromSourcehut 5 + , gitUpdater 6 + }: 7 + 8 + stdenv.mkDerivation (finalAttrs: { 9 + pname = "pc"; 10 + version = "0.4"; 11 + 12 + src = fetchFromSourcehut { 13 + owner = "~ft"; 14 + repo = "pc"; 15 + rev = finalAttrs.version; 16 + hash = "sha256-fzEDI20o5ROY9n/QRzCW66iCKYaBbI++Taur6EoA0wA="; 17 + }; 18 + 19 + nativeBuildInputs = [ byacc ]; 20 + makeFlags = [ "PREFIX=$(out)" ]; 21 + 22 + strictDeps = true; 23 + 24 + enableParallelBuilding = true; 25 + 26 + passthru.updateScript = gitUpdater { }; 27 + 28 + meta = { 29 + description = "Programmer's calculator"; 30 + homepage = "https://git.sr.ht/~ft/pc"; 31 + license = with lib.licenses; [ mit ]; 32 + maintainers = with lib.maintainers; [ moody ]; 33 + platforms = lib.platforms.unix; 34 + }; 35 + })
+1 -1
pkgs/tools/misc/procyon/default.nix
··· 27 27 sourceProvenance = with sourceTypes; [ binaryBytecode ]; 28 28 homepage = "https://github.com/mstrobel/procyon/"; 29 29 license = licenses.asl20; 30 - maintainers = with maintainers; [ SuperSandro2000 ]; 30 + maintainers = with maintainers; [ ]; 31 31 }; 32 32 }
+1 -1
pkgs/tools/misc/smenu/default.nix
··· 22 22 your selection will be sent to standard output. 23 23 ''; 24 24 license = licenses.gpl2Only; 25 - maintainers = with maintainers; [ matthiasbeyer SuperSandro2000 ]; 25 + maintainers = with maintainers; [ matthiasbeyer ]; 26 26 platforms = platforms.unix; 27 27 }; 28 28 }
+1 -1
pkgs/tools/misc/thefuck/default.nix
··· 39 39 homepage = "https://github.com/nvbn/thefuck"; 40 40 description = "Magnificent app which corrects your previous console command"; 41 41 license = licenses.mit; 42 - maintainers = with maintainers; [ SuperSandro2000 ]; 42 + maintainers = with maintainers; [ ]; 43 43 }; 44 44 }
+1 -1
pkgs/tools/misc/tmux/default.nix
··· 102 102 changelog = "https://github.com/tmux/tmux/raw/${finalAttrs.version}/CHANGES"; 103 103 license = lib.licenses.bsd3; 104 104 platforms = lib.platforms.unix; 105 - maintainers = with lib.maintainers; [ thammers fpletz SuperSandro2000 srapenne ]; 105 + maintainers = with lib.maintainers; [ thammers fpletz srapenne ]; 106 106 }; 107 107 })
+3 -3
pkgs/tools/misc/topgrade/default.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "topgrade"; 13 - version = "12.0.0"; 13 + version = "12.0.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "topgrade-rs"; 17 17 repo = "topgrade"; 18 18 rev = "v${version}"; 19 - hash = "sha256-l8/X2PGdUZa9r0E95wpbvag6XW5jV+7H8TJMm/D4yqk="; 19 + hash = "sha256-H+Vx5yfHKgiUCrk42PMlu+XQsehol6aBLSwCuiBWCrs="; 20 20 }; 21 21 22 - cargoHash = "sha256-W+NrhHxPDo+WfNMxDmmPlCdTB/YavLDQ2+JEMDF9qJ4="; 22 + cargoHash = "sha256-ixFTkTyPKLeH6VcFAOAwmdc6YrrIpJ8obBwm19tFq3s="; 23 23 24 24 nativeBuildInputs = [ 25 25 installShellFiles
+1 -1
pkgs/tools/misc/uutils-coreutils/default.nix
··· 49 49 CLI utils in Rust. This repo is to aggregate the GNU coreutils rewrites. 50 50 ''; 51 51 homepage = "https://github.com/uutils/coreutils"; 52 - maintainers = with maintainers; [ siraben SuperSandro2000 ]; 52 + maintainers = with maintainers; [ siraben ]; 53 53 license = licenses.mit; 54 54 platforms = platforms.unix; 55 55 };
+52
pkgs/tools/misc/valeronoi/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , boost 5 + , cgal 6 + , cmake 7 + , copyDesktopItems 8 + , gpp 9 + , mpfr 10 + , qtbase 11 + , qtimageformats 12 + , qtsvg 13 + , wrapQtAppsHook 14 + }: 15 + 16 + stdenv.mkDerivation rec { 17 + pname = "valeronoi"; 18 + version = "0.1.9"; 19 + 20 + src = fetchFromGitHub { 21 + owner = "ccoors"; 22 + repo = pname; 23 + rev = "refs/tags/v${version}"; 24 + sha256 = "sha256-Xa70kOPQLavuJTF9PxCgpKYj15C2fna++cFlCId0a08="; 25 + }; 26 + 27 + buildInputs = [ 28 + boost 29 + cgal 30 + gpp 31 + mpfr 32 + qtbase 33 + qtimageformats 34 + qtsvg 35 + ]; 36 + 37 + nativeBuildInputs = [ 38 + cmake 39 + copyDesktopItems 40 + wrapQtAppsHook 41 + ]; 42 + 43 + doCheck = true; 44 + 45 + meta = with lib; { 46 + homepage = "https://github.com/ccoors/Valeronoi/"; 47 + description = "A WiFi mapping companion app for Valetudo"; 48 + license = licenses.gpl3Only; 49 + platforms = [ "x86_64-linux" ]; 50 + maintainers = with maintainers; [ nova-madeline maeve ]; 51 + }; 52 + }
+1 -1
pkgs/tools/networking/bandwhich/default.nix
··· 43 43 ''; 44 44 homepage = "https://github.com/imsnif/bandwhich"; 45 45 license = licenses.mit; 46 - maintainers = with maintainers; [ Br1ght0ne SuperSandro2000 ]; 46 + maintainers = with maintainers; [ Br1ght0ne figsoda ]; 47 47 platforms = platforms.unix; 48 48 }; 49 49 }
+3 -3
pkgs/tools/networking/frp/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "frp"; 5 - version = "0.51.0"; 5 + version = "0.51.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "fatedier"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-Nng9WZlKyrEtuVQec5pcfUoZQKWN1IwZ8N7JLc+Mark="; 11 + sha256 = "sha256-B15GyMk4tYbhj4QGpona0CK89WyIkPnH6QMxmd8BS+w="; 12 12 }; 13 13 14 - vendorHash = "sha256-pnC4bnb/y9x6hDa6yAwNoWDUlIiAyy6LEdoISlX+S1s="; 14 + vendorHash = "sha256-JNBQO4rZmtBKIAQAikQDyREQ3Kw1CG6pC9HouJQ5dh4="; 15 15 16 16 doCheck = false; 17 17
+1 -1
pkgs/tools/networking/mosh/default.nix
··· 55 55 especially over Wi-Fi, cellular, and long-distance links. 56 56 ''; 57 57 license = licenses.gpl3Plus; 58 - maintainers = with maintainers; [ viric SuperSandro2000 ]; 58 + maintainers = with maintainers; [ viric ]; 59 59 platforms = platforms.unix; 60 60 }; 61 61 }
+1 -1
pkgs/tools/networking/qrcp/default.nix
··· 41 41 complete. 42 42 ''; 43 43 license = licenses.mit; 44 - maintainers = with maintainers; [ fgaz SuperSandro2000 ]; 44 + maintainers = with maintainers; [ fgaz ]; 45 45 broken = stdenv.isDarwin; # needs golang.org/x/sys bump 46 46 }; 47 47 }
+84
pkgs/tools/networking/wsl-vpnkit/default.nix
··· 1 + { lib 2 + , resholve 3 + , fetchFromGitHub 4 + 5 + # Runtime dependencies 6 + , coreutils 7 + , dnsutils 8 + , gawk 9 + , gnugrep 10 + , gvproxy 11 + , iproute2 12 + , iptables 13 + , iputils 14 + , wget 15 + }: 16 + 17 + let 18 + version = "0.4.1"; 19 + gvproxyWin = gvproxy.overrideAttrs (_: { 20 + buildPhase = '' 21 + GOARCH=amd64 GOOS=windows go build -ldflags '-s -w' -o bin/gvproxy-windows.exe ./cmd/gvproxy 22 + ''; 23 + }); 24 + in 25 + resholve.mkDerivation { 26 + pname = "wsl-vpnkit"; 27 + inherit version; 28 + 29 + src = fetchFromGitHub { 30 + owner = "sakai135"; 31 + repo = "wsl-vpnkit"; 32 + rev = "v${version}"; 33 + hash = "sha256-Igbr3L2W32s4uBepllSz07bkbI3qwAKMZkBrXLqGrGA="; 34 + }; 35 + 36 + postPatch = '' 37 + substituteInPlace wsl-vpnkit \ 38 + --replace "/app/wsl-vm" "${gvproxy}/bin/gvforwarder" \ 39 + --replace "/app/wsl-gvproxy.exe" "${gvproxyWin}/bin/gvproxy-windows.exe" 40 + ''; 41 + 42 + installPhase = '' 43 + mkdir -p $out/bin 44 + cp wsl-vpnkit $out/bin 45 + ''; 46 + 47 + solutions.wsl-vpnkit = { 48 + scripts = [ "bin/wsl-vpnkit" ]; 49 + interpreter = "none"; 50 + inputs = [ 51 + coreutils 52 + dnsutils 53 + gawk 54 + gnugrep 55 + iproute2 56 + iptables 57 + iputils 58 + wget 59 + ]; 60 + 61 + keep = { 62 + "$VMEXEC_PATH" = true; 63 + "$GVPROXY_PATH" = true; 64 + }; 65 + 66 + execer = [ 67 + "cannot:${iproute2}/bin/ip" 68 + "cannot:${wget}/bin/wget" 69 + ]; 70 + 71 + fix = { 72 + aliases = true; 73 + ping = "${iputils}/bin/ping"; 74 + }; 75 + }; 76 + 77 + meta = with lib; { 78 + description = "Provides network connectivity to Windows Subsystem for Linux (WSL) when blocked by VPN"; 79 + homepage = "https://github.com/sakai135/wsl-vpnkit"; 80 + changelog = "https://github.com/sakai135/wsl-vpnkit/releases/tag/v${version}"; 81 + license = licenses.mit; 82 + maintainers = with maintainers; [ terlar ]; 83 + }; 84 + }
+1 -1
pkgs/tools/package-management/holo-build/default.nix
··· 54 54 description = "Cross-distribution system package compiler"; 55 55 homepage = "https://holocm.org/"; 56 56 license = licenses.gpl3Plus; 57 - maintainers = with maintainers; [ SuperSandro2000 ]; 57 + maintainers = with maintainers; [ ]; 58 58 }; 59 59 }
+1 -1
pkgs/tools/package-management/nixpkgs-review/default.nix
··· 43 43 homepage = "https://github.com/Mic92/nixpkgs-review"; 44 44 changelog = "https://github.com/Mic92/nixpkgs-review/releases/tag/${version}"; 45 45 license = licenses.mit; 46 - maintainers = with maintainers; [ figsoda mic92 SuperSandro2000 ]; 46 + maintainers = with maintainers; [ figsoda mic92 ]; 47 47 }; 48 48 }
+47
pkgs/tools/security/bitwarden/cli.nix
··· 1 + { lib 2 + , stdenv 3 + , buildNpmPackage 4 + , nodejs_18 5 + , fetchFromGitHub 6 + , python3 7 + , darwin 8 + }: 9 + 10 + let 11 + buildNpmPackage' = buildNpmPackage.override { nodejs = nodejs_18; }; 12 + in buildNpmPackage' rec { 13 + pname = "bitwarden-cli"; 14 + version = "2023.5.0"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "bitwarden"; 18 + repo = "clients"; 19 + rev = "cli-v${version}"; 20 + hash = "sha256-ELKpGSY4ZbgSk4vJnTiB+IOa8RQU8Ahy3A1mYsKtthU="; 21 + }; 22 + 23 + npmDepsHash = "sha256-G8DEYPjEP3L4s0pr5n2ZTj8kkT0E7Po1BKhZ2hUdJuY="; 24 + 25 + nativeBuildInputs = [ 26 + python3 27 + ] ++ lib.optionals stdenv.isDarwin [ 28 + darwin.cctools 29 + ]; 30 + 31 + makeCacheWritable = true; 32 + 33 + env.ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; 34 + 35 + npmBuildScript = "build:prod"; 36 + 37 + npmWorkspace = "apps/cli"; 38 + 39 + meta = with lib; { 40 + changelog = "https://github.com/bitwarden/clients/releases/tag/${src.rev}"; 41 + description = "A secure and free password manager for all of your devices"; 42 + homepage = "https://bitwarden.com"; 43 + license = lib.licenses.gpl3Only; 44 + mainProgram = "bw"; 45 + maintainers = with maintainers; [ dotlambda ]; 46 + }; 47 + }
+1 -1
pkgs/tools/security/sshuttle/default.nix
··· 44 44 Works with Linux and Mac OS and supports DNS tunneling. 45 45 ''; 46 46 license = licenses.lgpl21; 47 - maintainers = with maintainers; [ domenkozar carlosdagos SuperSandro2000 ]; 47 + maintainers = with maintainers; [ domenkozar carlosdagos ]; 48 48 }; 49 49 }
+1 -1
pkgs/tools/system/ctop/default.nix
··· 19 19 description = "Top-like interface for container metrics"; 20 20 homepage = "https://ctop.sh/"; 21 21 license = licenses.mit; 22 - maintainers = with maintainers; [ apeyroux marsam SuperSandro2000 ]; 22 + maintainers = with maintainers; [ apeyroux marsam ]; 23 23 }; 24 24 }
+1 -1
pkgs/tools/system/systeroid/default.nix
··· 34 34 description = "More powerful alternative to sysctl(8) with a terminal user interface"; 35 35 homepage = "https://github.com/orhun/systeroid"; 36 36 license = licenses.asl20; 37 - maintainers = with maintainers; [ SuperSandro2000 ]; 37 + maintainers = with maintainers; [ figsoda ]; 38 38 }; 39 39 }
+1 -1
pkgs/tools/system/tree/default.nix
··· 46 46 the LS_COLORS environment variable is set and output is to tty. 47 47 ''; 48 48 platforms = platforms.all; 49 - maintainers = with maintainers; [ SuperSandro2000 ]; 49 + maintainers = with maintainers; [ ]; 50 50 }; 51 51 }
+1 -1
pkgs/tools/virtualization/onmetal-image/default.nix
··· 34 34 description = "Onmetal OCI Image Specification, Library and Tooling"; 35 35 homepage = "https://github.com/onmetal/onmetal-image"; 36 36 license = licenses.asl20; 37 - maintainers = with maintainers; [ SuperSandro2000 ]; 37 + maintainers = with maintainers; [ ]; 38 38 }; 39 39 }
+42
pkgs/tools/wayland/wlr-which-key/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , pkg-config 5 + , cairo 6 + , glib 7 + , libxkbcommon 8 + , pango 9 + }: 10 + 11 + rustPlatform.buildRustPackage rec { 12 + pname = "wlr-which-key"; 13 + version = "0.1.0"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "MaxVerevkin"; 17 + repo = "wlr-which-key"; 18 + rev = "v${version}"; 19 + hash = "sha256-GLTbUa5EfpJV7OACTlewAgGjd5Ub0fYHoW8f+EVrT14="; 20 + }; 21 + 22 + cargoHash = "sha256-TtA4Ley5bwymF8Yiqso5fGAwGsT0GRlfAlGS5j4s0Qw="; 23 + 24 + nativeBuildInputs = [ 25 + pkg-config 26 + ]; 27 + 28 + buildInputs = [ 29 + cairo 30 + glib 31 + libxkbcommon 32 + pango 33 + ]; 34 + 35 + meta = with lib; { 36 + description = "Keymap manager for wlroots-based compositors"; 37 + homepage = "https://github.com/MaxVerevkin/wlr-which-key"; 38 + license = licenses.gpl3Only; 39 + maintainers = with maintainers; [ xlambein ]; 40 + platforms = platforms.linux; 41 + }; 42 + }
+28 -1
pkgs/top-level/all-packages.nix
··· 618 618 inherit (darwin.apple_sdk.frameworks) Security; 619 619 }; 620 620 621 + enochecker-test = with python3Packages; callPackage ../development/tools/enochecker-test { }; 622 + 621 623 enumer = callPackage ../tools/misc/enumer { }; 622 624 623 625 evans = callPackage ../development/tools/evans { }; ··· 1909 1911 ukmm = callPackage ../tools/games/ukmm { }; 1910 1912 1911 1913 unflac = callPackage ../tools/audio/unflac { }; 1914 + 1915 + valeronoi = qt6Packages.callPackage ../tools/misc/valeronoi { }; 1912 1916 1913 1917 veikk-linux-driver-gui = libsForQt5.callPackage ../tools/misc/veikk-linux-driver-gui { }; 1914 1918 ··· 3356 3360 3357 3361 bitwarden = callPackage ../tools/security/bitwarden { }; 3358 3362 3359 - inherit (nodePackages) bitwarden-cli; 3363 + bitwarden-cli = callPackage ../tools/security/bitwarden/cli.nix { }; 3360 3364 3361 3365 bitwarden-menu = python3Packages.callPackage ../applications/misc/bitwarden-menu { }; 3362 3366 ··· 4627 4631 wlprop = callPackage ../tools/wayland/wlprop { }; 4628 4632 4629 4633 wlr-randr = callPackage ../tools/wayland/wlr-randr { }; 4634 + 4635 + wlr-which-key = callPackage ../tools/wayland/wlr-which-key { }; 4630 4636 4631 4637 wlrctl = callPackage ../tools/wayland/wlrctl { }; 4632 4638 ··· 5953 5959 5954 5960 pbzx = callPackage ../tools/compression/pbzx { }; 5955 5961 5962 + pc = callPackage ../tools/misc/pc { }; 5963 + 5956 5964 pcb2gcode = callPackage ../tools/misc/pcb2gcode { }; 5957 5965 5958 5966 pcp = callPackage ../tools/misc/pcp { }; ··· 7552 7560 snowflake = callPackage ../tools/networking/snowflake { }; 7553 7561 7554 7562 wsl-open = callPackage ../tools/misc/wsl-open { }; 7563 + 7564 + wsl-vpnkit = callPackage ../tools/networking/wsl-vpnkit { }; 7555 7565 7556 7566 xkcdpass = with python3Packages; toPythonApplication xkcdpass; 7557 7567 ··· 9674 9684 mask = callPackage ../development/tools/mask { }; 9675 9685 9676 9686 maskromtool = qt6Packages.callPackage ../tools/graphics/maskromtool { }; 9687 + 9688 + mastotool = callPackage ../tools/misc/mastotool { }; 9677 9689 9678 9690 mathpix-snipping-tool = callPackage ../tools/misc/mathpix-snipping-tool { }; 9679 9691 ··· 14791 14803 14792 14804 zstxtns-utils = callPackage ../tools/text/zstxtns-utils { }; 14793 14805 14806 + zsh-abbr = callPackage ../shells/zsh/zsh-abbr { }; 14807 + 14794 14808 zsh-autoenv = callPackage ../tools/misc/zsh-autoenv { }; 14795 14809 14796 14810 zsh-autopair = callPackage ../shells/zsh/zsh-autopair { }; ··· 18751 18765 }; 18752 18766 18753 18767 cwltool = callPackage ../applications/science/misc/cwltool { }; 18768 + 18769 + dbt = with python3Packages; toPythonApplication dbt-core; 18754 18770 18755 18771 dprint = callPackage ../development/tools/dprint { 18756 18772 inherit (darwin.apple_sdk.frameworks) Security; ··· 31735 31751 31736 31752 molsketch = libsForQt5.callPackage ../applications/editors/molsketch { }; 31737 31753 31754 + multiviewer-for-f1 = callPackage ../applications/video/multiviewer-for-f1 { }; 31755 + 31738 31756 muzika = callPackage ../applications/audio/muzika { }; 31739 31757 31740 31758 pattypan = callPackage ../applications/misc/pattypan { ··· 35521 35539 35522 35540 typer = callPackage ../applications/misc/typer { }; 35523 35541 35542 + typioca = callPackage ../applications/misc/typioca { }; 35543 + 35524 35544 ueberzug = with python3Packages; toPythonApplication ueberzug; 35525 35545 35526 35546 ueberzugpp = darwin.apple_sdk_11_0.callPackage ../tools/graphics/ueberzugpp { ··· 36307 36327 36308 36328 xnotify = callPackage ../tools/X11/xnotify { }; 36309 36329 36330 + xpano = callPackage ../applications/graphics/xpano { }; 36331 + 36310 36332 xv = callPackage ../applications/graphics/xv { }; 36311 36333 36312 36334 xygrib = libsForQt5.callPackage ../applications/misc/xygrib { }; ··· 36802 36824 freedroidrpg = callPackage ../games/freedroidrpg { }; 36803 36825 36804 36826 freenukum = callPackage ../games/freenukum { }; 36827 + 36828 + inherit (callPackages ../games/fteqw {}) 36829 + fteqw 36830 + fteqw-dedicated 36831 + fteqcc; 36805 36832 36806 36833 gamepad-tool = callPackage ../games/gamepad-tool { }; 36807 36834
+2 -2
pkgs/top-level/lua-packages.nix
··· 76 76 description = "New FFI-based API for lua-nginx-module"; 77 77 homepage = "https://github.com/openresty/lua-resty-core"; 78 78 license = licenses.bsd3; 79 - maintainers = with maintainers; [ SuperSandro2000 ]; 79 + maintainers = with maintainers; [ ]; 80 80 }; 81 81 }) {}; 82 82 ··· 95 95 description = "Lua-land LRU Cache based on LuaJIT FFI"; 96 96 homepage = "https://github.com/openresty/lua-resty-lrucache"; 97 97 license = licenses.bsd3; 98 - maintainers = with maintainers; [ SuperSandro2000 ]; 98 + maintainers = with maintainers; [ ]; 99 99 }; 100 100 }) {}; 101 101
+8 -1
pkgs/top-level/python-aliases.nix
··· 154 154 intreehook = throw "intreehooks has been removed because it is obsolete as a backend-path key was added to PEP 517"; # added 2023-04-11 155 155 ipaddress = throw "ipaddress has been removed because it is no longer required since python 2.7."; # added 2022-05-30 156 156 influxgraph = throw "influxgraph has been removed because it is no longer maintained"; # added 2022-07-10 157 - itanium_demangler = itanium-demangler; # added 2022-1017 157 + itanium_demangler = itanium-demangler; # added 2022-10-17 158 + jaraco_classes = jaraco-classes; # added 2023-07-14 159 + jaraco_collections = jaraco-collections; # added 2023-07-14 160 + jaraco_functools = jaraco-functools; # added 2023-07-14 161 + jaraco_itertools = jaraco-itertools; # added 2023-07-14 162 + jaraco_logging = jaraco-logging; # added 2023-07-14 163 + jaraco_text = jaraco-text; # added 2023-07-14 164 + jaraco_stream = jaraco-stream; # added 2023-07-14 158 165 JayDeBeApi = jaydebeapi; # added 2023-02-19 159 166 jinja2_time = jinja2-time; # added 2022-11-07 160 167 JPype1 = jpype1; # added 2023-02-19
+27 -7
pkgs/top-level/python-packages.nix
··· 2465 2465 2466 2466 dbfread = callPackage ../development/python-modules/dbfread { }; 2467 2467 2468 + dbt-bigquery = callPackage ../development/python-modules/dbt-bigquery { }; 2469 + 2470 + dbt-core = callPackage ../development/python-modules/dbt-core { }; 2471 + 2472 + dbt-extractor = callPackage ../development/python-modules/dbt-extractor { }; 2473 + 2474 + dbt-postgres = callPackage ../development/python-modules/dbt-postgres { }; 2475 + 2476 + dbt-redshift = callPackage ../development/python-modules/dbt-redshift { }; 2477 + 2478 + dbt-snowflake = callPackage ../development/python-modules/dbt-snowflake { }; 2479 + 2468 2480 dbus-client-gen = callPackage ../development/python-modules/dbus-client-gen { }; 2469 2481 2470 2482 dbus-deviation = callPackage ../development/python-modules/dbus-deviation { }; ··· 3337 3349 enlighten = callPackage ../development/python-modules/enlighten { }; 3338 3350 3339 3351 enocean = callPackage ../development/python-modules/enocean { }; 3352 + 3353 + enochecker-core = callPackage ../development/python-modules/enochecker-core { }; 3340 3354 3341 3355 enrich = callPackage ../development/python-modules/enrich { }; 3342 3356 ··· 4754 4768 4755 4769 holidays = callPackage ../development/python-modules/holidays { }; 4756 4770 4771 + hologram = callPackage ../development/python-modules/hologram { }; 4772 + 4757 4773 holoviews = callPackage ../development/python-modules/holoviews { }; 4758 4774 4759 4775 home-assistant-bluetooth = callPackage ../development/python-modules/home-assistant-bluetooth { }; ··· 5237 5253 5238 5254 jaraco-abode = callPackage ../development/python-modules/jaraco-abode { }; 5239 5255 5240 - jaraco_classes = callPackage ../development/python-modules/jaraco_classes { }; 5256 + jaraco-classes = callPackage ../development/python-modules/jaraco-classes { }; 5241 5257 5242 - jaraco_collections = callPackage ../development/python-modules/jaraco_collections { }; 5258 + jaraco-collections = callPackage ../development/python-modules/jaraco-collections { }; 5243 5259 5244 5260 jaraco-email = callPackage ../development/python-modules/jaraco-email { }; 5245 5261 5246 5262 jaraco-context = callPackage ../development/python-modules/jaraco-context { }; 5247 5263 5248 - jaraco_functools = callPackage ../development/python-modules/jaraco_functools { }; 5264 + jaraco-functools = callPackage ../development/python-modules/jaraco-functools { }; 5249 5265 5250 - jaraco_itertools = callPackage ../development/python-modules/jaraco_itertools { }; 5266 + jaraco-itertools = callPackage ../development/python-modules/jaraco-itertools { }; 5251 5267 5252 - jaraco_logging = callPackage ../development/python-modules/jaraco_logging { }; 5268 + jaraco-logging = callPackage ../development/python-modules/jaraco-logging { }; 5253 5269 5254 5270 jaraco-net = callPackage ../development/python-modules/jaraco-net { }; 5255 5271 5256 - jaraco_stream = callPackage ../development/python-modules/jaraco_stream { }; 5272 + jaraco-stream = callPackage ../development/python-modules/jaraco-stream { }; 5257 5273 5258 5274 jaraco-test = callPackage ../development/python-modules/jaraco-test { }; 5259 5275 5260 - jaraco_text = callPackage ../development/python-modules/jaraco_text { }; 5276 + jaraco-text = callPackage ../development/python-modules/jaraco-text { }; 5261 5277 5262 5278 jarowinkler = callPackage ../development/python-modules/jarowinkler { }; 5263 5279 ··· 5685 5701 langcodes = callPackage ../development/python-modules/langcodes { }; 5686 5702 5687 5703 langdetect = callPackage ../development/python-modules/langdetect { }; 5704 + 5705 + langsmith = callPackage ../development/python-modules/langsmith { }; 5688 5706 5689 5707 language-data = callPackage ../development/python-modules/language-data { }; 5690 5708 ··· 6459 6477 minikanren = callPackage ../development/python-modules/minikanren { }; 6460 6478 6461 6479 minikerberos = callPackage ../development/python-modules/minikerberos { }; 6480 + 6481 + minimal-snowplow-tracker = callPackage ../development/python-modules/minimal-snowplow-tracker { }; 6462 6482 6463 6483 minimock = callPackage ../development/python-modules/minimock { }; 6464 6484