pythonPackages.check-manifest: Fix dependencies

This commit is contained in:
Sandro Jäckel 2021-01-12 11:24:44 +01:00 committed by Jonathan Ringer
parent 0edb15fd4d
commit 740630e480

View File

@ -1,4 +1,4 @@
{ lib, stdenv, buildPythonPackage, fetchPypi, pep517, toml, mock, breezy, git }:
{ lib, stdenv, buildPythonPackage, fetchPypi, pep517, toml, mock, breezy, git, build }:
buildPythonPackage rec {
pname = "check-manifest";
@ -14,7 +14,7 @@ buildPythonPackage rec {
substituteInPlace tests.py --replace "test_build_sdist" "no_test_build_sdist"
'';
propagatedBuildInputs = [ pep517 toml ];
propagatedBuildInputs = [ build pep517 toml ];
checkInputs = [ mock breezy git ];