python3Packages.build: 0.1.0 -> 0.3.0

This commit is contained in:
Fabian Affolter 2021-03-03 08:08:23 +01:00 committed by Frederik Rietdijk
parent 53bf5c322d
commit 041224bd8d

View File

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, pep517, toml, mock, breezy, git, build }: { lib, buildPythonPackage, fetchPypi, pep517, toml, mock, breezy, git, build, pytestCheckHook }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "check-manifest"; pname = "check-manifest";
@ -16,7 +16,10 @@ buildPythonPackage rec {
propagatedBuildInputs = [ build pep517 toml ]; propagatedBuildInputs = [ build pep517 toml ];
checkInputs = [ mock breezy git ]; checkInputs = [ mock breezy git pytestCheckHook ];
pythonImportsCheck = [ "check_manifest" ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/mgedmin/check-manifest"; homepage = "https://github.com/mgedmin/check-manifest";