summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiowinreg
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2021-06-18 21:43:05 -0700
committerMartin Weinelt <hexa@darmstadt.ccc.de>2021-06-22 13:42:50 +0200
commitde71eb8973194607070fb40fc96599d86242f7e8 (patch)
treea4f0cbd5a8108ce53bb490d47ae7be50f7996251 /pkgs/development/python-modules/aiowinreg
parent8d199b090806cf271615a6838546da639130f5d0 (diff)
downloadnixpkgs-de71eb8973194607070fb40fc96599d86242f7e8.tar
nixpkgs-de71eb8973194607070fb40fc96599d86242f7e8.tar.gz
nixpkgs-de71eb8973194607070fb40fc96599d86242f7e8.tar.bz2
nixpkgs-de71eb8973194607070fb40fc96599d86242f7e8.tar.lz
nixpkgs-de71eb8973194607070fb40fc96599d86242f7e8.tar.xz
nixpkgs-de71eb8973194607070fb40fc96599d86242f7e8.tar.zst
nixpkgs-de71eb8973194607070fb40fc96599d86242f7e8.zip
python3Packages.aiowinreg: fix build, add missing dep
Diffstat (limited to 'pkgs/development/python-modules/aiowinreg')
-rw-r--r--pkgs/development/python-modules/aiowinreg/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/aiowinreg/default.nix b/pkgs/development/python-modules/aiowinreg/default.nix
index aba0bd6dc23..17d9160ce56 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" ];