summary refs log tree commit diff
diff options
context:
space:
mode:
authorLouis Bettens <louis@bettens.info>2022-02-11 16:46:15 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2022-03-08 08:13:55 -0800
commit1c0b4be6828e50cc4b61aa6f92039840d004578e (patch)
treebb668d22b5b8ad5fec7e948da68dd1b13b330537
parent8e18f8e5225a2416f7ec63647a809e8396b07f43 (diff)
downloadnixpkgs-1c0b4be6828e50cc4b61aa6f92039840d004578e.tar
nixpkgs-1c0b4be6828e50cc4b61aa6f92039840d004578e.tar.gz
nixpkgs-1c0b4be6828e50cc4b61aa6f92039840d004578e.tar.bz2
nixpkgs-1c0b4be6828e50cc4b61aa6f92039840d004578e.tar.lz
nixpkgs-1c0b4be6828e50cc4b61aa6f92039840d004578e.tar.xz
nixpkgs-1c0b4be6828e50cc4b61aa6f92039840d004578e.tar.zst
nixpkgs-1c0b4be6828e50cc4b61aa6f92039840d004578e.zip
chia: 1.2.11 -> 1.3.0
-rw-r--r--pkgs/applications/blockchains/chia/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/applications/blockchains/chia/default.nix b/pkgs/applications/blockchains/chia/default.nix
index 207b42e5584..f912ef41677 100644
--- a/pkgs/applications/blockchains/chia/default.nix
+++ b/pkgs/applications/blockchains/chia/default.nix
@@ -6,14 +6,14 @@
 
 let chia = python3Packages.buildPythonApplication rec {
   pname = "chia";
-  version = "1.2.11";
+  version = "1.3.0";
 
   src = fetchFromGitHub {
     owner = "Chia-Network";
     repo = "chia-blockchain";
     rev = version;
     fetchSubmodules = true;
-    sha256 = "sha256-hRpZce8ydEsyq7htNfzlRSKPwMAOUurC3uiQpX6WiB8=";
+    hash = "sha256-eUvZc/7gqGkCB2tNKdwqKOmOgEcG9a/7TSvvyQzhNcQ=";
   };
 
   postPatch = ''
@@ -31,6 +31,7 @@ let chia = python3Packages.buildPythonApplication rec {
   SETUPTOOLS_SCM_PRETEND_VERSION = "v${version}";
 
   propagatedBuildInputs = with python3Packages; [
+    aiofiles
     aiohttp
     aiosqlite
     bitstring
@@ -46,6 +47,7 @@ let chia = python3Packages.buildPythonApplication rec {
     colorlog
     concurrent-log-handler
     cryptography
+    dnslib
     dnspythonchia
     fasteners
     keyrings-cryptfile
@@ -55,6 +57,7 @@ let chia = python3Packages.buildPythonApplication rec {
     sortedcontainers
     watchdog
     websockets
+    zstd
   ];
 
   checkInputs = with python3Packages; [