python3Packages.atom: add missing cppy dependency

This commit is contained in:
Jonathan Ringer 2020-06-08 11:48:05 -07:00 committed by Frederik Rietdijk
parent 3e9fcf33c6
commit d8d6cfdf06

View File

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, future }: { lib, buildPythonPackage, fetchPypi, future, cppy }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "atom"; pname = "atom";
@ -9,6 +9,7 @@ buildPythonPackage rec {
sha256 = "ce0c600e4b26b7553c926b3b8253df7ae19bbf2678bdc2d46eb29b5f9149f172"; sha256 = "ce0c600e4b26b7553c926b3b8253df7ae19bbf2678bdc2d46eb29b5f9149f172";
}; };
buildInputs = [ cppy ];
propagatedBuildInputs = [ future ]; propagatedBuildInputs = [ future ];
# Tests not released to pypi # Tests not released to pypi