From de71eb8973194607070fb40fc96599d86242f7e8 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Fri, 18 Jun 2021 21:43:05 -0700 Subject: [PATCH] python3Packages.aiowinreg: fix build, add missing dep --- pkgs/development/python-modules/aiowinreg/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/aiowinreg/default.nix b/pkgs/development/python-modules/aiowinreg/default.nix index aba0bd6dc232..17d9160ce56b 100644 --- a/pkgs/development/python-modules/aiowinreg/default.nix +++ b/pkgs/development/python-modules/aiowinreg/default.nix @@ -2,6 +2,7 @@ , buildPythonPackage , fetchPypi , pythonOlder +, winacl }: buildPythonPackage rec { @@ -15,6 +16,8 @@ buildPythonPackage rec { sha256 = "096663ec3db35fdc7ccc1c2d0d64a11cf64f4baa48955088e42b6a649ce418a5"; }; + propagatedBuildInputs = [ winacl ]; + # Project doesn't have tests doCheck = false; pythonImportsCheck = [ "aiowinreg" ];