Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
3b6f03e4 5d50d003

+347 -144
+11
maintainers/maintainer-list.nix
··· 7264 githubId = 1267527; 7265 name = "Daniel Firth"; 7266 }; 7267 lodi = { 7268 email = "anthony.lodi@gmail.com"; 7269 github = "lodi";
··· 7264 githubId = 1267527; 7265 name = "Daniel Firth"; 7266 }; 7267 + lockejan = { 7268 + email = "git@smittie.de"; 7269 + matrix = "@jan:smittie.de"; 7270 + github = "lockejan"; 7271 + githubId = 25434434; 7272 + name = "Jan Schmitt"; 7273 + keys = [{ 7274 + longkeyid = "dsa2048/0xA2BC3C6F14351991"; 7275 + fingerprint = "1763 9903 2D7C 5B82 5D5A 0EAD A2BC 3C6F 1435 1991"; 7276 + }]; 7277 + }; 7278 lodi = { 7279 email = "anthony.lodi@gmail.com"; 7280 github = "lodi";
+3 -2
nixos/modules/services/monitoring/prometheus/exporters/varnish.nix
··· 45 }; 46 instance = mkOption { 47 type = types.nullOr types.str; 48 - default = null; 49 description = '' 50 varnishstat -n value. 51 ''; ··· 66 }; 67 }; 68 serviceOpts = { 69 - path = [ pkgs.varnish ]; 70 serviceConfig = { 71 RestartSec = mkDefault 1; 72 DynamicUser = false;
··· 45 }; 46 instance = mkOption { 47 type = types.nullOr types.str; 48 + default = config.services.varnish.stateDir; 49 + defaultText = lib.literalExpression "config.services.varnish.stateDir"; 50 description = '' 51 varnishstat -n value. 52 ''; ··· 67 }; 68 }; 69 serviceOpts = { 70 + path = [ config.services.varnish.package ]; 71 serviceConfig = { 72 RestartSec = mkDefault 1; 73 DynamicUser = false;
+1 -1
nixos/tests/installer.nix
··· 568 "pvcreate /dev/vda1 /dev/vda2", 569 "vgcreate MyVolGroup /dev/vda1 /dev/vda2", 570 "lvcreate --size 1G --name swap MyVolGroup", 571 - "lvcreate --size 3G --name nixos MyVolGroup", 572 "mkswap -f /dev/MyVolGroup/swap -L swap", 573 "swapon -L swap", 574 "mkfs.xfs -L nixos /dev/MyVolGroup/nixos",
··· 568 "pvcreate /dev/vda1 /dev/vda2", 569 "vgcreate MyVolGroup /dev/vda1 /dev/vda2", 570 "lvcreate --size 1G --name swap MyVolGroup", 571 + "lvcreate --size 6G --name nixos MyVolGroup", 572 "mkswap -f /dev/MyVolGroup/swap -L swap", 573 "swapon -L swap", 574 "mkfs.xfs -L nixos /dev/MyVolGroup/nixos",
+3 -2
pkgs/applications/graphics/hydrus/default.nix
··· 10 11 python3Packages.buildPythonPackage rec { 12 pname = "hydrus"; 13 - version = "477"; 14 format = "other"; 15 16 src = fetchFromGitHub { 17 owner = "hydrusnetwork"; 18 repo = "hydrus"; 19 rev = "v${version}"; 20 - sha256 = "sha256-/Gehlk+eMBPA+OT7xsTri6PDi2PBmzjckMVbqPGXT64="; 21 }; 22 23 nativeBuildInputs = [ ··· 27 28 propagatedBuildInputs = with python3Packages; [ 29 beautifulsoup4 30 chardet 31 cloudscraper 32 html5lib
··· 10 11 python3Packages.buildPythonPackage rec { 12 pname = "hydrus"; 13 + version = "478"; 14 format = "other"; 15 16 src = fetchFromGitHub { 17 owner = "hydrusnetwork"; 18 repo = "hydrus"; 19 rev = "v${version}"; 20 + sha256 = "sha256-ZsQzKc2fOFTzI/kBS8ws2+XT9kRAn4L55n1EZgVy4Kk="; 21 }; 22 23 nativeBuildInputs = [ ··· 27 28 propagatedBuildInputs = with python3Packages; [ 29 beautifulsoup4 30 + cbor2 31 chardet 32 cloudscraper 33 html5lib
+7 -7
pkgs/applications/networking/cluster/kops/default.nix
··· 43 homepage = "https://github.com/kubernetes/kops"; 44 changelog = "https://github.com/kubernetes/kops/tree/master/docs/releases"; 45 license = licenses.asl20; 46 - maintainers = with maintainers; [ offline zimbatm diegolelis ]; 47 platforms = platforms.unix; 48 }; 49 } // attrs'; ··· 52 53 mkKops = generic; 54 55 - kops_1_20 = mkKops rec { 56 - version = "1.20.3"; 57 - sha256 = "sha256-Yrh0wFz7MQgTDwENqQouYh3pr1gOq64Rqft5yxIiCAo="; 58 - rev = "v${version}"; 59 - }; 60 - 61 kops_1_21 = mkKops rec { 62 version = "1.21.4"; 63 sha256 = "sha256-f2xOVa3N/GH5IoI6H/QwDdKTeQoF/kEHX6lNytCZ9cs="; ··· 67 kops_1_22 = mkKops rec { 68 version = "1.22.4"; 69 sha256 = "sha256-osU7yI77ZALGrAGuP8qAgv+ogDRn+BSVmcjPbi/WEKE="; 70 rev = "v${version}"; 71 }; 72 }
··· 43 homepage = "https://github.com/kubernetes/kops"; 44 changelog = "https://github.com/kubernetes/kops/tree/master/docs/releases"; 45 license = licenses.asl20; 46 + maintainers = with maintainers; [ offline zimbatm diegolelis yurrriq ]; 47 platforms = platforms.unix; 48 }; 49 } // attrs'; ··· 52 53 mkKops = generic; 54 55 kops_1_21 = mkKops rec { 56 version = "1.21.4"; 57 sha256 = "sha256-f2xOVa3N/GH5IoI6H/QwDdKTeQoF/kEHX6lNytCZ9cs="; ··· 61 kops_1_22 = mkKops rec { 62 version = "1.22.4"; 63 sha256 = "sha256-osU7yI77ZALGrAGuP8qAgv+ogDRn+BSVmcjPbi/WEKE="; 64 + rev = "v${version}"; 65 + }; 66 + 67 + kops_1_23 = mkKops rec { 68 + version = "1.23.0"; 69 + sha256 = "sha256-tiVNUaW0an6C8M9bxEX5pvB/W5IjZ/S24RdPikzm3bc="; 70 rev = "v${version}"; 71 }; 72 }
+2 -2
pkgs/applications/networking/cluster/tektoncd-cli/default.nix
··· 2 3 buildGoModule rec { 4 pname = "tektoncd-cli"; 5 - version = "0.23.0"; 6 7 src = fetchFromGitHub { 8 owner = "tektoncd"; 9 repo = "cli"; 10 rev = "v${version}"; 11 - sha256 = "sha256-rzKEjLjX2bPqgNGJYdyTuu15+9bq9WnsrJtsBzL/oOo="; 12 }; 13 14 vendorSha256 = null;
··· 2 3 buildGoModule rec { 4 pname = "tektoncd-cli"; 5 + version = "0.23.1"; 6 7 src = fetchFromGitHub { 8 owner = "tektoncd"; 9 repo = "cli"; 10 rev = "v${version}"; 11 + sha256 = "sha256-fOq67Cxtb2A9Obh2o5/aFy5bYBnyFKYQDPcpxOXMy1s="; 12 }; 13 14 vendorSha256 = null;
+5
pkgs/applications/science/logic/isabelle/components/default.nix
···
··· 1 + { callPackage }: 2 + 3 + { 4 + isabelle-linter = callPackage ./isabelle-linter.nix {}; 5 + }
+22
pkgs/applications/science/logic/isabelle/components/isabelle-linter.nix
···
··· 1 + { stdenv, lib, fetchFromGitHub, isabelle }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "isabelle-linter"; 5 + version = "Isabelle2021-1-v1.0.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "isabelle-prover"; 9 + repo = "isabelle-linter"; 10 + rev = version; 11 + sha256 = "0v6scc2rhj6bjv530gzz6i57czzcgpkw7a9iqnfdnm5gvs5qjk7a"; 12 + }; 13 + 14 + installPhase = import ./mkBuild.nix { inherit isabelle; path = "${pname}-${version}"; }; 15 + 16 + meta = with lib; { 17 + description = "Linter component for Isabelle."; 18 + homepage = "https://github.com/isabelle-prover/isabelle-linter"; 19 + maintainers = with maintainers; [ jvanbruegge ]; 20 + license = licenses.mit; 21 + }; 22 + }
+36
pkgs/applications/science/logic/isabelle/components/mkBuild.nix
···
··· 1 + { isabelle, path }: 2 + 3 + let 4 + dir = "$out/isabelle/${isabelle.dirname}"; 5 + iDir = "${isabelle}/${isabelle.dirname}"; 6 + in '' 7 + shopt -s extglob 8 + mkdir -p ${dir}/lib/classes 9 + 10 + cDir=$out/${isabelle.dirname}/contrib/${path} 11 + mkdir -p $cDir 12 + cp -r !(isabelle) $cDir 13 + 14 + cd ${dir} 15 + ln -s ${iDir}/!(lib|bin) ./ 16 + ln -s ${iDir}/lib/!(classes) lib/ 17 + ln -s ${iDir}/lib/classes/* lib/classes/ 18 + 19 + mkdir bin/ 20 + cp ${iDir}/bin/* bin/ 21 + 22 + export HOME=$TMP 23 + bin/isabelle components -u $cDir 24 + bin/isabelle scala_build 25 + 26 + cd lib/classes 27 + for f in ${iDir}/lib/classes/*; do 28 + rm $(basename $f) 29 + done 30 + 31 + lDir=$out/${isabelle.dirname}/lib/classes/ 32 + mkdir -p $lDir 33 + cp -r * $lDir 34 + cd $out 35 + rm -rf isabelle 36 + ''
+26 -1
pkgs/applications/science/logic/isabelle/default.nix
··· 1 - { lib, stdenv, fetchurl, coreutils, nettools, java, scala, polyml, z3, veriT, vampire, eprover-ho, naproche, rlwrap, perl, makeDesktopItem }: 2 # nettools needed for hostname 3 4 stdenv.mkDerivation rec { ··· 153 maintainers = [ maintainers.jwiegley maintainers.jvanbruegge ]; 154 platforms = platforms.linux; 155 }; 156 }
··· 1 + { lib, stdenv, fetchurl, coreutils, nettools, java, scala, polyml, z3, veriT, vampire, eprover-ho, naproche, rlwrap, perl, makeDesktopItem, isabelle-components, isabelle, symlinkJoin }: 2 # nettools needed for hostname 3 4 stdenv.mkDerivation rec { ··· 153 maintainers = [ maintainers.jwiegley maintainers.jvanbruegge ]; 154 platforms = platforms.linux; 155 }; 156 + } // { 157 + withComponents = f: 158 + let 159 + base = "$out/${isabelle.dirname}"; 160 + components = f isabelle-components; 161 + in symlinkJoin { 162 + name = "isabelle-with-components-${isabelle.version}"; 163 + paths = [ isabelle ] ++ components; 164 + 165 + postBuild = '' 166 + rm $out/bin/* 167 + 168 + cd ${base} 169 + rm bin/* 170 + cp ${isabelle}/${isabelle.dirname}/bin/* bin/ 171 + rm etc/components 172 + cat ${isabelle}/${isabelle.dirname}/etc/components > etc/components 173 + 174 + export HOME=$TMP 175 + bin/isabelle install $out/bin 176 + patchShebangs $out/bin 177 + '' + lib.concatMapStringsSep "\n" (c: '' 178 + echo contrib/${c.pname}-${c.version} >> ${base}/etc/components 179 + '') components; 180 + }; 181 }
+31
pkgs/applications/version-management/git-and-tools/git-team/default.nix
···
··· 1 + { lib, buildGoModule, fetchFromGitHub, installShellFiles }: 2 + buildGoModule rec { 3 + pname = "git-team"; 4 + version = "1.7.0"; 5 + 6 + src = fetchFromGitHub { 7 + owner = "hekmekk"; 8 + repo = "git-team"; 9 + rev = "v${version}"; 10 + sha256 = "0nl5j64b61jw4bkf29y51svjbndmqqrqx96yaip4vjzj2dx9ywm4"; 11 + }; 12 + 13 + vendorSha256 = "sha256-xJMWPDuqoNtCCUnKuUvwlYztyrej1uZttC0NsDvYnXI="; 14 + 15 + nativeBuildInputs = [ installShellFiles ]; 16 + 17 + postInstall = '' 18 + go run main.go --generate-man-page > ${pname}.1 19 + installManPage ${pname}.1 20 + 21 + # Currently only bash completions are provided 22 + installShellCompletion --cmd git-team --bash <($out/bin/git-team completion bash) 23 + ''; 24 + 25 + meta = with lib; { 26 + description = "Command line interface for managing and enhancing git commit messages with co-authors"; 27 + homepage = "https://github.com/hekmekk/git-team"; 28 + license = licenses.mit; 29 + maintainers = with maintainers; [ lockejan ]; 30 + }; 31 + }
+3 -3
pkgs/applications/virtualization/docker/compose.nix
··· 2 3 buildGoModule rec { 4 pname = "docker-compose"; 5 - version = "2.3.3"; 6 7 src = fetchFromGitHub { 8 owner = "docker"; 9 repo = "compose"; 10 rev = "v${version}"; 11 - sha256 = "sha256-PFR7EcRkqn/d6gYlMNN36nRIslYEN0JFSbFU9niGc+Y="; 12 }; 13 14 - vendorSha256 = "sha256-L6PNKK1ID7ZVX/4sG72wn9ZjWlx0lsNuiBc/EtCN03E="; 15 16 ldflags = [ "-X github.com/docker/compose/v2/internal.Version=${version}" "-s" "-w" ]; 17
··· 2 3 buildGoModule rec { 4 pname = "docker-compose"; 5 + version = "2.3.4"; 6 7 src = fetchFromGitHub { 8 owner = "docker"; 9 repo = "compose"; 10 rev = "v${version}"; 11 + sha256 = "sha256-ZFnrfGM2LUZZC8IPPCh3GS95jz7NGraOlr3wQaw5K0k="; 12 }; 13 14 + vendorSha256 = "sha256-Y2rE5/XLmQLqBA8xiCd9v30gTaO9qbiBFa4jKucKU6M="; 15 16 ldflags = [ "-X github.com/docker/compose/v2/internal.Version=${version}" "-s" "-w" ]; 17
-2
pkgs/desktops/gnome/core/nautilus/default.nix
··· 19 , libnotify 20 , libexif 21 , libseccomp 22 - , exempi 23 , librsvg 24 , tracker 25 , tracker-miners ··· 68 ]; 69 70 buildInputs = [ 71 - exempi 72 gexiv2 73 glib-networking 74 gnome-desktop
··· 19 , libnotify 20 , libexif 21 , libseccomp 22 , librsvg 23 , tracker 24 , tracker-miners ··· 67 ]; 68 69 buildInputs = [ 70 gexiv2 71 glib-networking 72 gnome-desktop
+11 -2
pkgs/development/compilers/solc/default.nix
··· 34 sha256 = "18230bg4rq9pmm5f8f65j444jpq56rld4fhmpham8q3vr1c1bdjh"; 35 }; 36 37 solc = gccStdenv.mkDerivation rec { 38 pname = "solc"; 39 - version = "0.8.2"; 40 41 # upstream suggests avoid using archive generated by github 42 src = fetchzip { 43 url = "https://github.com/ethereum/solidity/releases/download/v${version}/solidity_${version}.tar.gz"; 44 - sha256 = "11w7sa1y2dirzh84k04fkwbfc6xpjp5jr65w1pmb2pnkjvvf46xq"; 45 }; 46 47 postPatch = '' ··· 49 --replace "${jsoncppUrl}" ${jsoncpp} 50 substituteInPlace cmake/range-v3.cmake \ 51 --replace "${range3Url}" ${range3} 52 ''; 53 54 cmakeFlags = [
··· 34 sha256 = "18230bg4rq9pmm5f8f65j444jpq56rld4fhmpham8q3vr1c1bdjh"; 35 }; 36 37 + fmtlibVersion = "8.0.1"; 38 + fmtlibUrl = "https://github.com/fmtlib/fmt/archive/${fmtlibVersion}.tar.gz"; 39 + fmtlib = fetchzip { 40 + url = fmtlibUrl; 41 + sha256 = "1mnvxqsan034d2jiqnw2yvkljl7lwvhakmj5bscwp1fpkn655bbw"; 42 + }; 43 + 44 solc = gccStdenv.mkDerivation rec { 45 pname = "solc"; 46 + version = "0.8.13"; 47 48 # upstream suggests avoid using archive generated by github 49 src = fetchzip { 50 url = "https://github.com/ethereum/solidity/releases/download/v${version}/solidity_${version}.tar.gz"; 51 + hash = "sha256-cFC9M65kSYgYq9rhBXZKEdfvIMbMaDiDwdPmU8v9s7k="; 52 }; 53 54 postPatch = '' ··· 56 --replace "${jsoncppUrl}" ${jsoncpp} 57 substituteInPlace cmake/range-v3.cmake \ 58 --replace "${range3Url}" ${range3} 59 + substituteInPlace cmake/fmtlib.cmake \ 60 + --replace "${fmtlibUrl}" ${fmtlib} 61 ''; 62 63 cmakeFlags = [
+2 -2
pkgs/development/libraries/flatpak/default.nix
··· 53 54 stdenv.mkDerivation rec { 55 pname = "flatpak"; 56 - version = "1.12.6"; 57 58 # TODO: split out lib once we figure out what to do with triggerdir 59 outputs = [ "out" "dev" "man" "doc" "devdoc" "installedTests" ]; 60 61 src = fetchurl { 62 url = "https://github.com/flatpak/flatpak/releases/download/${version}/${pname}-${version}.tar.xz"; 63 - sha256 = "7wLLUFuRzOUXMJm1SFdo7vGJnrzznt+CfEJUFjqBFic="; # Taken from https://github.com/flatpak/flatpak/releases/ 64 }; 65 66 patches = [
··· 53 54 stdenv.mkDerivation rec { 55 pname = "flatpak"; 56 + version = "1.12.7"; 57 58 # TODO: split out lib once we figure out what to do with triggerdir 59 outputs = [ "out" "dev" "man" "doc" "devdoc" "installedTests" ]; 60 61 src = fetchurl { 62 url = "https://github.com/flatpak/flatpak/releases/download/${version}/${pname}-${version}.tar.xz"; 63 + sha256 = "sha256-bbUqUxzieCgqx+v7mfZqC7PsyvROhkhEwslcHuW6kxY="; # Taken from https://github.com/flatpak/flatpak/releases/ 64 }; 65 66 patches = [
+2 -2
pkgs/development/libraries/libsolv/default.nix
··· 1 { lib, stdenv, fetchFromGitHub, cmake, ninja, zlib, expat, rpm, db }: 2 3 stdenv.mkDerivation rec { 4 - version = "0.7.20"; 5 pname = "libsolv"; 6 7 src = fetchFromGitHub { 8 owner = "openSUSE"; 9 repo = "libsolv"; 10 rev = version; 11 - sha256 = "sha256-NVyLa/fPGnO5jAz9rePFXg/z6RZeFCrkJBCG3gGh+YM="; 12 }; 13 14 cmakeFlags = [
··· 1 { lib, stdenv, fetchFromGitHub, cmake, ninja, zlib, expat, rpm, db }: 2 3 stdenv.mkDerivation rec { 4 + version = "0.7.21"; 5 pname = "libsolv"; 6 7 src = fetchFromGitHub { 8 owner = "openSUSE"; 9 repo = "libsolv"; 10 rev = version; 11 + sha256 = "sha256-ka1HXVo0CFr0eqGTkatYq1jXE+9UgM0YTZNW1WtMLF0="; 12 }; 13 14 cmakeFlags = [
-37
pkgs/development/ocaml-modules/odn/default.nix
··· 1 - { lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, type_conv, ounit, camlp4 }: 2 - 3 - if lib.versionAtLeast ocaml.version "4.06" 4 - then throw "ocaml-data-notation is not available for OCaml ${ocaml.version}" 5 - else 6 - 7 - stdenv.mkDerivation rec { 8 - pname = "ocaml-data-notation"; 9 - version = "0.0.11"; 10 - 11 - src = fetchurl { 12 - url = "https://forge.ocamlcore.org/frs/download.php/1310/ocaml-data-notation-${version}.tar.gz"; 13 - sha256 = "09a8zdyifpc2nl4hdvg9206142y31cq95ajgij011s1qcg3z93lj"; 14 - }; 15 - 16 - nativeBuildInputs = [ ocaml findlib ocamlbuild ]; 17 - buildInputs = [ type_conv ounit camlp4 ]; 18 - 19 - strictDeps = true; 20 - 21 - createFindlibDestdir = true; 22 - 23 - configurePhase = "ocaml setup.ml -configure"; 24 - buildPhase = "ocaml setup.ml -build"; 25 - installPhase = "ocaml setup.ml -install"; 26 - 27 - meta = with lib; { 28 - description = "Store data using OCaml notation"; 29 - homepage = "https://forge.ocamlcore.org/projects/odn/"; 30 - license = licenses.lgpl21; 31 - platforms = ocaml.meta.platforms or [ ]; 32 - maintainers = with maintainers; [ 33 - vbgl 34 - maggesi 35 - ]; 36 - }; 37 - }
···
+19 -8
pkgs/development/python-modules/aiohue/default.nix
··· 1 { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 , aiohttp 5 , asyncio-throttle 6 , pythonOlder 7 }: 8 9 buildPythonPackage rec { 10 pname = "aiohue"; 11 - version = "4.3.0"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.8"; 15 16 - src = fetchPypi { 17 - inherit pname version; 18 - hash = "sha256-PslmDeG/o9WAOc0FhidUNaISrlXa3rba3UEuvPVN/+A="; 19 }; 20 21 propagatedBuildInputs = [ 22 aiohttp 23 asyncio-throttle 24 ]; 25 26 pythonImportsCheck = [ ··· 28 "aiohue.discovery" 29 ]; 30 31 - # Project has no tests 32 - doCheck = false; 33 34 meta = with lib; { 35 description = "Python package to talk to Philips Hue";
··· 1 { lib 2 , aiohttp 3 , asyncio-throttle 4 + , awesomeversion 5 + , buildPythonPackage 6 + , fetchFromGitHub 7 + , pytestCheckHook 8 , pythonOlder 9 }: 10 11 buildPythonPackage rec { 12 pname = "aiohue"; 13 + version = "4.4.1"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.8"; 17 18 + src = fetchFromGitHub { 19 + owner = "home-assistant-libs"; 20 + repo = pname; 21 + rev = version; 22 + hash = "sha256-zXjfPd40yYyAuuW4CmaGRvJuORyQJa+6CFQaO6RQPZo="; 23 }; 24 25 propagatedBuildInputs = [ 26 + awesomeversion 27 aiohttp 28 asyncio-throttle 29 + ]; 30 + 31 + checkInputs = [ 32 + pytestCheckHook 33 ]; 34 35 pythonImportsCheck = [ ··· 37 "aiohue.discovery" 38 ]; 39 40 + disabledTestPaths = [ 41 + # File are prefixed with test_ 42 + "examples/" 43 + ]; 44 45 meta = with lib; { 46 description = "Python package to talk to Philips Hue";
+48
pkgs/development/python-modules/anyconfig/default.nix
···
··· 1 + { buildPythonPackage 2 + , fetchPypi 3 + , lib 4 + , pytestCheckHook 5 + , setuptools 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "anyconfig"; 10 + version = "0.12.0"; 11 + 12 + src = fetchPypi { 13 + inherit pname version; 14 + sha256 = "sha256-MJHXZ1dAaG+t6FdVU38qfGzO+oZZxbtWF04C3tdLltU="; 15 + }; 16 + 17 + postPatch = '' 18 + substituteInPlace setup.cfg \ 19 + --replace "--cov=src -vv" "" 20 + ''; 21 + 22 + propagatedBuildInputs = [ 23 + setuptools 24 + ]; 25 + 26 + checkInputs = [ 27 + pytestCheckHook 28 + ]; 29 + 30 + disabledTests = [ 31 + # OSError: /build/anyconfig-0.12.0/tests/res/cli/no_template/10/e/10.* should exists but not 32 + "test_runs_for_datasets" 33 + ]; 34 + 35 + disabledTestPaths = [ 36 + # NameError: name 'TT' is not defined 37 + "tests/schema/test_jsonschema.py" 38 + ]; 39 + 40 + pythonImportsCheck = [ "anyconfig" ]; 41 + 42 + meta = with lib; { 43 + description = "Python library provides common APIs to load and dump configuration files in various formats"; 44 + homepage = "https://github.com/ssato/python-anyconfig"; 45 + license = licenses.mit; 46 + maintainers = with maintainers; [ tboerger ]; 47 + }; 48 + }
+2
pkgs/development/python-modules/google-cloud-speech/default.nix
··· 8 , pytestCheckHook 9 , pytest-asyncio 10 , pythonOlder 11 }: 12 13 buildPythonPackage rec { ··· 26 libcst 27 google-api-core 28 proto-plus 29 ]; 30 31 checkInputs = [
··· 8 , pytestCheckHook 9 , pytest-asyncio 10 , pythonOlder 11 + , setuptools 12 }: 13 14 buildPythonPackage rec { ··· 27 libcst 28 google-api-core 29 proto-plus 30 + setuptools 31 ]; 32 33 checkInputs = [
+36
pkgs/development/python-modules/nested-lookup/default.nix
···
··· 1 + { buildPythonPackage 2 + , fetchFromGitHub 3 + , lib 4 + , pytestCheckHook 5 + , six 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "nested-lookup"; 10 + version = "0.2.23"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "russellballestrini"; 14 + repo = "nested-lookup"; 15 + # https://github.com/russellballestrini/nested-lookup/issues/47 16 + rev = "c1b0421479efa378545bc71efa3b72882e8fec17"; 17 + sha256 = "sha256-jgfYLSsFLQSsOH4NzbDPKFIG+tWWZ1zTWcZEaX2lthg="; 18 + }; 19 + 20 + propagatedBuildInputs = [ 21 + six 22 + ]; 23 + 24 + checkInputs = [ 25 + pytestCheckHook 26 + ]; 27 + 28 + pythonImportsCheck = [ "nested_lookup" ]; 29 + 30 + meta = with lib; { 31 + description = "Python functions for working with deeply nested documents (lists and dicts)"; 32 + homepage = "https://github.com/russellballestrini/nested-lookup"; 33 + license = licenses.publicDomain; 34 + maintainers = with maintainers; [ tboerger ]; 35 + }; 36 + }
+5 -3
pkgs/development/python-modules/passlib/default.nix
··· 1 - { buildPythonPackage 2 , fetchPypi 3 , nose 4 , bcrypt ··· 18 propagatedBuildInputs = [ bcrypt argon2_cffi ]; 19 propagatedNativeBuildInputs = [ argon2_cffi ]; 20 21 - meta = { 22 description = "A password hashing library for Python"; 23 - homepage = "https://code.google.com/p/passlib/"; 24 }; 25 }
··· 1 + { lib 2 + , buildPythonPackage 3 , fetchPypi 4 , nose 5 , bcrypt ··· 19 propagatedBuildInputs = [ bcrypt argon2_cffi ]; 20 propagatedNativeBuildInputs = [ argon2_cffi ]; 21 22 + meta = with lib; { 23 description = "A password hashing library for Python"; 24 + homepage = "https://foss.heptapod.net/python-libs/passlib"; 25 + license = licenses.bsdOriginal; 26 }; 27 }
+13 -11
pkgs/development/python-modules/publicsuffix2/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, requests }: 2 3 buildPythonPackage rec { 4 pname = "publicsuffix2"; 5 - version = "2.20191221"; 6 7 - # Tests are missing in the sdist 8 - # See: https://github.com/nexB/python-publicsuffix2/issues/12 9 src = fetchFromGitHub { 10 owner = "nexB"; 11 repo = "python-publicsuffix2"; 12 - rev = "release-2.2019-12-21"; 13 sha256 = "1dkvfvl0izq9hqzilnw8ipkbgjs9xyad9p21i3864hzinbh0wp9r"; 14 }; 15 16 - nativeBuildInputs = [ requests ]; 17 18 meta = with lib; { 19 - description = '' 20 - Get a public suffix for a domain name using the Public Suffix 21 - List. Forked from and using the same API as the publicsuffix package. 22 - ''; 23 - homepage = "https://pypi.python.org/pypi/publicsuffix2/"; 24 license = licenses.mpl20; 25 }; 26 }
··· 1 + { lib, buildPythonPackage, fetchFromGitHub }: 2 3 buildPythonPackage rec { 4 pname = "publicsuffix2"; 5 + version = "2.2019-12-21"; 6 7 src = fetchFromGitHub { 8 owner = "nexB"; 9 repo = "python-publicsuffix2"; 10 + rev = "release-${version}"; 11 sha256 = "1dkvfvl0izq9hqzilnw8ipkbgjs9xyad9p21i3864hzinbh0wp9r"; 12 }; 13 14 + postPatch = '' 15 + # only used to update the interal publicsuffix list 16 + substituteInPlace setup.py \ 17 + --replace "'requests >= 2.7.0'," "" 18 + ''; 19 + 20 + pythonImportsCheck = [ "publicsuffix2" ]; 21 22 meta = with lib; { 23 + description = "Get a public suffix for a domain name using the Public Suffix List"; 24 + homepage = "https://github.com/nexB/python-publicsuffix2"; 25 license = licenses.mpl20; 26 + maintainers = with maintainers; [ SuperSandro2000 ]; 27 }; 28 }
+18 -4
pkgs/development/python-modules/zstandard/default.nix
··· 3 , fetchPypi 4 , cffi 5 , hypothesis 6 }: 7 8 buildPythonPackage rec { 9 pname = "zstandard"; 10 version = "0.17.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "fa9194cb91441df7242aa3ddc4cb184be38876cb10dd973674887f334bafbfb6"; 15 }; 16 17 - propagatedNativeBuildInputs = [ cffi ]; 18 19 - propagatedBuildInputs = [ cffi ]; 20 21 - checkInputs = [ hypothesis ]; 22 23 meta = with lib; { 24 description = "zstandard bindings for Python"; 25 homepage = "https://github.com/indygreg/python-zstandard"; 26 license = licenses.bsdOriginal; 27 - maintainers = [ maintainers.arnoldfarkas ]; 28 }; 29 }
··· 3 , fetchPypi 4 , cffi 5 , hypothesis 6 + , pythonOlder 7 }: 8 9 buildPythonPackage rec { 10 pname = "zstandard"; 11 version = "0.17.0"; 12 + format = "setuptools"; 13 + 14 + disabled = pythonOlder "3.6"; 15 16 src = fetchPypi { 17 inherit pname version; 18 sha256 = "fa9194cb91441df7242aa3ddc4cb184be38876cb10dd973674887f334bafbfb6"; 19 }; 20 21 + propagatedNativeBuildInputs = [ 22 + cffi 23 + ]; 24 25 + propagatedBuildInputs = [ 26 + cffi 27 + ]; 28 29 + checkInputs = [ 30 + hypothesis 31 + ]; 32 + 33 + pythonImportsCheck = [ 34 + "zstandard" 35 + ]; 36 37 meta = with lib; { 38 description = "zstandard bindings for Python"; 39 homepage = "https://github.com/indygreg/python-zstandard"; 40 license = licenses.bsdOriginal; 41 + maintainers = with maintainers; [ arnoldfarkas ]; 42 }; 43 }
+2 -2
pkgs/development/tools/continuous-integration/buildkite-agent/default.nix
··· 3 nixosTests }: 4 buildGoModule rec { 5 pname = "buildkite-agent"; 6 - version = "3.33.3"; 7 8 src = fetchFromGitHub { 9 owner = "buildkite"; 10 repo = "agent"; 11 rev = "v${version}"; 12 - sha256 = "sha256-RCKHVFYYcWraUwsGuD/anmWpNwc7cHc9jm0LwR9WRzA="; 13 }; 14 15 vendorSha256 = "sha256-n3XRxpEKjHf7L7fcGscWTVKBtot9waZbLoS9cG0kHfI=";
··· 3 nixosTests }: 4 buildGoModule rec { 5 pname = "buildkite-agent"; 6 + version = "3.34.1"; 7 8 src = fetchFromGitHub { 9 owner = "buildkite"; 10 repo = "agent"; 11 rev = "v${version}"; 12 + sha256 = "sha256-OxZcMPJx83hBQOe4Pc8ERhO9QOc4euVVs+OMbPjA4U0="; 13 }; 14 15 vendorSha256 = "sha256-n3XRxpEKjHf7L7fcGscWTVKBtot9waZbLoS9cG0kHfI=";
+1 -1
pkgs/development/tools/database/prisma-engines/default.nix
··· 56 homepage = "https://www.prisma.io/"; 57 license = licenses.asl20; 58 platforms = platforms.unix; 59 - maintainers = with maintainers; [ pamplemousse pimeys ]; 60 }; 61 }
··· 56 homepage = "https://www.prisma.io/"; 57 license = licenses.asl20; 58 platforms = platforms.unix; 59 + maintainers = with maintainers; [ pamplemousse pimeys superherointj ]; 60 }; 61 }
+2
pkgs/development/tools/misc/nrfutil/default.nix
··· 68 license = licenses.unfreeRedistributable; 69 platforms = platforms.unix; 70 maintainers = with maintainers; [ gebner ]; 71 }; 72 }
··· 68 license = licenses.unfreeRedistributable; 69 platforms = platforms.unix; 70 maintainers = with maintainers; [ gebner ]; 71 + # libusb1 1.9.3 uses setuptools' 2to3 translation feature, which has been removed in setuptools 58 72 + broken = true; 73 }; 74 }
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-nix.json
··· 1 { 2 "url": "https://github.com/cstrahan/tree-sitter-nix", 3 - "rev": "470b15a60520ff7b86f51732b8d8f1118c86041e", 4 - "date": "2022-03-18T01:42:08-05:00", 5 - "path": "/nix/store/c5y76kz7wmfq05hfw4xpqz2ahcdy924f-tree-sitter-nix", 6 - "sha256": "1hl0mpy0i6r160v6v3nflrdi5fnmd8i5zbx963h5nj9fg4srkb5r", 7 "fetchLFS": false, 8 "fetchSubmodules": false, 9 "deepClone": false,
··· 1 { 2 "url": "https://github.com/cstrahan/tree-sitter-nix", 3 + "rev": "6d6aaa50793b8265b6a8b6628577a0083d3b923d", 4 + "date": "2021-11-29T00:27:21-06:00", 5 + "path": "/nix/store/6cjadxvqbrh205lsqnk2rnzq3badxdxv-tree-sitter-nix", 6 + "sha256": "0cbk6dqppasrvnm87pwfgm718z6b0xmy9m7zj8ysil0h8bklz1w9", 7 "fetchLFS": false, 8 "fetchSubmodules": false, 9 "deepClone": false,
+4 -21
pkgs/servers/confluent-platform/default.nix
··· 3 4 stdenv.mkDerivation rec { 5 pname = "confluent-platform"; 6 - version = "5.3.0"; 7 - scalaVersion = "2.12"; 8 9 src = fetchurl { 10 - url = "http://packages.confluent.io/archive/${lib.versions.majorMinor version}/confluent-${version}-${scalaVersion}.tar.gz"; 11 - sha256 = "14cilq63fib5yvj40504aj6wssi7xw4f7c2jadlzdmdxzh4ixqmp"; 12 - }; 13 - 14 - confluentCli = fetchFromGitHub { 15 - owner = "confluentinc"; 16 - repo = "confluent-cli"; 17 - rev = "v${version}"; 18 - sha256 = "18yvp56b8l074qfkgr4afirgd43g8b023n9ija6dnk6p6dib1f4j"; 19 }; 20 21 nativeBuildInputs = [ makeWrapper ]; 22 buildInputs = [ jre bash ]; 23 24 installPhase = '' 25 - cp -R $confluentCli confluent-cli 26 - chmod -R +w confluent-cli 27 - 28 - ( 29 - export CONFLUENT_HOME=$PWD 30 - cd confluent-cli 31 - make install 32 - ) 33 - 34 mkdir -p $out 35 cp -R bin etc share src $out 36 rm -rf $out/bin/windows ··· 56 homepage = "https://www.confluent.io/"; 57 description = "Confluent event streaming platform based on Apache Kafka"; 58 license = licenses.asl20; 59 - maintainers = [ maintainers.offline ]; 60 platforms = platforms.unix; 61 }; 62 }
··· 3 4 stdenv.mkDerivation rec { 5 pname = "confluent-platform"; 6 + version = "7.0.1"; 7 8 src = fetchurl { 9 + url = "https://packages.confluent.io/archive/${lib.versions.majorMinor version}/confluent-${version}.tar.gz"; 10 + sha256 = "Q0/A/3M2tn530/+o1RpcgNsPKFQq6YJQnhgysRlpVfU="; 11 }; 12 13 nativeBuildInputs = [ makeWrapper ]; 14 buildInputs = [ jre bash ]; 15 16 installPhase = '' 17 mkdir -p $out 18 cp -R bin etc share src $out 19 rm -rf $out/bin/windows ··· 39 homepage = "https://www.confluent.io/"; 40 description = "Confluent event streaming platform based on Apache Kafka"; 41 license = licenses.asl20; 42 + maintainers = with maintainers; [ zoedsoupe ]; 43 platforms = platforms.unix; 44 }; 45 }
+3 -3
pkgs/servers/libreddit/default.nix
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "libreddit"; 11 - version = "0.22.1"; 12 13 src = fetchFromGitHub { 14 owner = "spikecodes"; 15 repo = pname; 16 rev = "v${version}"; 17 - sha256 = "sha256-k6GAxEGmDzC6nUCMYXahw/MTQanpZw8UMBVPCA4zSTs="; 18 }; 19 20 - cargoSha256 = "sha256-K31z5j/pBN84Egrfwe4/V3hpbIrlzn6ppFFNWFXFVcc="; 21 22 buildInputs = lib.optional stdenv.isDarwin Security; 23
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "libreddit"; 11 + version = "0.22.3"; 12 13 src = fetchFromGitHub { 14 owner = "spikecodes"; 15 repo = pname; 16 rev = "v${version}"; 17 + sha256 = "sha256-6aOUhw+eQJDU3sgd9ymQUYLBuCCJXIQHzr0+zT8yEtU="; 18 }; 19 20 + cargoSha256 = "sha256-ZlLzTg+TCRHRnrXHhv4OuYpD3Fd6qRfzHvdwWrBYQdU="; 21 22 buildInputs = lib.optional stdenv.isDarwin Security; 23
+3 -3
pkgs/servers/monitoring/prometheus/alertmanager.nix
··· 2 3 buildGoModule rec { 4 pname = "alertmanager"; 5 - version = "0.23.0"; 6 rev = "v${version}"; 7 8 src = fetchFromGitHub { 9 inherit rev; 10 owner = "prometheus"; 11 repo = "alertmanager"; 12 - sha256 = "sha256-06mKgWUyw5jsjKiRXQ9/oqHvFdkY2nS9Z3eW60lTNbU="; 13 }; 14 15 - vendorSha256 = "sha256-zJvzCC7Vn5repWssyDuGtoUSZC2ojQhMqDX5Orr0ST0="; 16 17 subPackages = [ "cmd/alertmanager" "cmd/amtool" ]; 18
··· 2 3 buildGoModule rec { 4 pname = "alertmanager"; 5 + version = "0.24.0"; 6 rev = "v${version}"; 7 8 src = fetchFromGitHub { 9 inherit rev; 10 owner = "prometheus"; 11 repo = "alertmanager"; 12 + sha256 = "sha256-hoCE0wD9/Sh/oBce7kCg/wG44FmMs6dAKnEYP+2sH0w="; 13 }; 14 15 + vendorSha256 = "sha256-ePb9qdCTEHHIV6JlbrBlaZjD5APwQuoGloO88W5S7Oc="; 16 17 subPackages = [ "cmd/alertmanager" "cmd/amtool" ]; 18
+4 -4
pkgs/tools/filesystems/xfsprogs/default.nix
··· 1 { lib, stdenv, buildPackages, fetchurl, autoconf, automake, gettext, libtool, pkg-config 2 - , icu, libuuid, readline, inih 3 }: 4 5 stdenv.mkDerivation rec { 6 pname = "xfsprogs"; 7 - version = "5.13.0"; 8 9 src = fetchurl { 10 url = "mirror://kernel/linux/utils/fs/xfs/xfsprogs/${pname}-${version}.tar.xz"; 11 - sha256 = "sha256-ThQtS6vghq35AW2MYGyAWCnaCORjiaRDP0A0YgT5DNs="; 12 }; 13 14 outputs = [ "bin" "dev" "out" "doc" ]; ··· 18 autoconf automake libtool gettext pkg-config 19 libuuid # codegen tool uses libuuid 20 ]; 21 - buildInputs = [ readline icu inih ]; 22 propagatedBuildInputs = [ libuuid ]; # Dev headers include <uuid/uuid.h> 23 24 enableParallelBuilding = true;
··· 1 { lib, stdenv, buildPackages, fetchurl, autoconf, automake, gettext, libtool, pkg-config 2 + , icu, libuuid, readline, inih, liburcu 3 }: 4 5 stdenv.mkDerivation rec { 6 pname = "xfsprogs"; 7 + version = "5.14.2"; 8 9 src = fetchurl { 10 url = "mirror://kernel/linux/utils/fs/xfs/xfsprogs/${pname}-${version}.tar.xz"; 11 + sha256 = "sha256-AczT753yg3dTpdh2uNqE6pV9E9ekYbjEbor6TrCaq8g="; 12 }; 13 14 outputs = [ "bin" "dev" "out" "doc" ]; ··· 18 autoconf automake libtool gettext pkg-config 19 libuuid # codegen tool uses libuuid 20 ]; 21 + buildInputs = [ readline icu inih liburcu ]; 22 propagatedBuildInputs = [ libuuid ]; # Dev headers include <uuid/uuid.h> 23 24 enableParallelBuilding = true;
+3 -2
pkgs/tools/misc/fwup/default.nix
··· 48 49 propagatedBuildInputs = [ 50 coreutils 51 - dosfstools 52 - mtools 53 unzip 54 zip 55 ]; 56 57 checkInputs = [
··· 48 49 propagatedBuildInputs = [ 50 coreutils 51 unzip 52 zip 53 + ] ++ lib.optionals doCheck [ 54 + mtools 55 + dosfstools 56 ]; 57 58 checkInputs = [
+3 -3
pkgs/tools/misc/topgrade/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "topgrade"; 5 - version = "8.2.0"; 6 7 src = fetchFromGitHub { 8 owner = "r-darwish"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-WyiEKC5WUwIGCaxXqiqNyOcGVZgfd2lVFMxQxhgJhMc="; 12 }; 13 14 - cargoSha256 = "sha256-ZcOSHEZHGa1XhGQlW4pR5hBJ2SpSbkKuRS6OSHGg9Lo="; 15 16 buildInputs = lib.optional stdenv.isDarwin Foundation; 17
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "topgrade"; 5 + version = "8.3.0"; 6 7 src = fetchFromGitHub { 8 owner = "r-darwish"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-iFS8Bf2IF0GoW168DwfBbkiPd7IGJhGShofFnBESpUc="; 12 }; 13 14 + cargoSha256 = "sha256-8Ag4rDXnDZgxdwFpiWnYNjDeau9vr9EIfbJzeQlqSDM="; 15 16 buildInputs = lib.optional stdenv.isDarwin Foundation; 17
+3 -3
pkgs/tools/networking/frp/default.nix
··· 2 3 buildGoModule rec { 4 pname = "frp"; 5 - version = "0.40.0"; 6 7 src = fetchFromGitHub { 8 owner = "fatedier"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-W+88Fq9oYDBLCNp+6rc9jACJzky7FCZg/xLDowGGdm0="; 12 }; 13 14 - vendorSha256 = "sha256-iBjMFOERWQ1aPn+2gEoI9og2ov2LlBVV1sLAZlvqZPM="; 15 16 doCheck = false; 17
··· 2 3 buildGoModule rec { 4 pname = "frp"; 5 + version = "0.41.0"; 6 7 src = fetchFromGitHub { 8 owner = "fatedier"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-JutR1yrxbwhfcw6qTh493yVeo7KzLl83himPTX8FJlA="; 12 }; 13 14 + vendorSha256 = "sha256-HOfcVPrJ6TBrhToqYN2CJ0i3re95awrIxQk2Mm8x3DU="; 15 16 doCheck = false; 17
-5
pkgs/tools/package-management/micromamba/default.nix
··· 11 patches = [ 12 # Patch added by the mamba team 13 (fetchpatch { 14 - url = "https://raw.githubusercontent.com/mamba-org/boa-forge/20530f80e2e15012078d058803b6e2c75ed54224/libsolv/add_strict_repo_prio_rule.patch"; 15 - sha256 = "19c47i5cpyy88nxskf7k6q6r43i55w61jvnz7fc2r84hpjkcrv7r"; 16 - }) 17 - # Patch added by the mamba team 18 - (fetchpatch { 19 url = "https://raw.githubusercontent.com/mamba-org/boa-forge/20530f80e2e15012078d058803b6e2c75ed54224/libsolv/conda_variant_priorization.patch"; 20 sha256 = "1iic0yx7h8s662hi2jqx68w5kpyrab4fr017vxd4wyxb6wyk35dd"; 21 })
··· 11 patches = [ 12 # Patch added by the mamba team 13 (fetchpatch { 14 url = "https://raw.githubusercontent.com/mamba-org/boa-forge/20530f80e2e15012078d058803b6e2c75ed54224/libsolv/conda_variant_priorization.patch"; 15 sha256 = "1iic0yx7h8s662hi2jqx68w5kpyrab4fr017vxd4wyxb6wyk35dd"; 16 })
+5 -2
pkgs/top-level/all-packages.nix
··· 26227 26228 git-review = python3Packages.callPackage ../applications/version-management/git-review { }; 26229 26230 github-cli = gh; 26231 26232 gitolite = callPackage ../applications/version-management/gitolite { }; ··· 32725 java = openjdk17; 32726 z3 = z3_4_4_0; 32727 }; 32728 32729 iprover = callPackage ../applications/science/logic/iprover { }; 32730 ··· 33537 # Exceptions are versions that we need to keep to allow upgrades from older NixOS releases 33538 inherit (callPackage ../applications/networking/cluster/kops {}) 33539 mkKops 33540 - kops_1_20 33541 kops_1_21 33542 kops_1_22 33543 ; 33544 - kops = kops_1_22; 33545 33546 lguf-brightness = callPackage ../misc/lguf-brightness { }; 33547
··· 26227 26228 git-review = python3Packages.callPackage ../applications/version-management/git-review { }; 26229 26230 + git-team = callPackage ../applications/version-management/git-and-tools/git-team { }; 26231 + 26232 github-cli = gh; 26233 26234 gitolite = callPackage ../applications/version-management/gitolite { }; ··· 32727 java = openjdk17; 32728 z3 = z3_4_4_0; 32729 }; 32730 + isabelle-components = recurseIntoAttrs (callPackage ../applications/science/logic/isabelle/components { }); 32731 32732 iprover = callPackage ../applications/science/logic/iprover { }; 32733 ··· 33540 # Exceptions are versions that we need to keep to allow upgrades from older NixOS releases 33541 inherit (callPackage ../applications/networking/cluster/kops {}) 33542 mkKops 33543 kops_1_21 33544 kops_1_22 33545 + kops_1_23 33546 ; 33547 + kops = kops_1_23; 33548 33549 lguf-brightness = callPackage ../misc/lguf-brightness { }; 33550
-2
pkgs/top-level/ocaml-packages.nix
··· 886 887 ocaml_cryptgps = callPackage ../development/ocaml-modules/cryptgps { }; 888 889 - ocaml_data_notation = callPackage ../development/ocaml-modules/odn { }; 890 - 891 ocaml_expat = 892 if lib.versionAtLeast ocaml.version "4.02" 893 then callPackage ../development/ocaml-modules/expat { }
··· 886 887 ocaml_cryptgps = callPackage ../development/ocaml-modules/cryptgps { }; 888 889 ocaml_expat = 890 if lib.versionAtLeast ocaml.version "4.02" 891 then callPackage ../development/ocaml-modules/expat { }
+4
pkgs/top-level/python-packages.nix
··· 546 547 anybadge = callPackage ../development/python-modules/anybadge { }; 548 549 anyio = callPackage ../development/python-modules/anyio { }; 550 551 anytree = callPackage ../development/python-modules/anytree { ··· 5467 nessclient = callPackage ../development/python-modules/nessclient { }; 5468 5469 nest-asyncio = callPackage ../development/python-modules/nest-asyncio { }; 5470 5471 nestedtext = callPackage ../development/python-modules/nestedtext { }; 5472
··· 546 547 anybadge = callPackage ../development/python-modules/anybadge { }; 548 549 + anyconfig = callPackage ../development/python-modules/anyconfig { }; 550 + 551 anyio = callPackage ../development/python-modules/anyio { }; 552 553 anytree = callPackage ../development/python-modules/anytree { ··· 5469 nessclient = callPackage ../development/python-modules/nessclient { }; 5470 5471 nest-asyncio = callPackage ../development/python-modules/nest-asyncio { }; 5472 + 5473 + nested-lookup = callPackage ../development/python-modules/nested-lookup { }; 5474 5475 nestedtext = callPackage ../development/python-modules/nestedtext { }; 5476