pythonPackages.checkmanifest: fix build

This commit is contained in:
Jonathan Ringer 2019-11-02 11:15:49 -07:00 committed by Jon
parent 5f5bfce078
commit 708787c096

View File

@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi }:
{ stdenv, buildPythonPackage, fetchPypi, toml }:
buildPythonPackage rec {
pname = "check-manifest";
@ -9,6 +9,8 @@ buildPythonPackage rec {
sha256 = "42de6eaab4ed149e60c9b367ada54f01a3b1e4d6846784f9b9710e770ff5572c";
};
propagatedBuildInputs = [ toml ];
doCheck = false;
meta = with stdenv.lib; {