python3Packages.zope_contenttype: fix build

This commit is contained in:
Jonathan Ringer 2020-07-04 08:39:36 -07:00
parent f0c7019005
commit 93e7581c9a
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0

View File

@ -1,6 +1,7 @@
{ stdenv { stdenv
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, zope_testrunner
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -12,12 +13,12 @@ buildPythonPackage rec {
sha256 = "c12d929c67ab3eaef9b8a7fba3d19cce8500c8fd25afed8058c8e15f324cbd5b"; sha256 = "c12d929c67ab3eaef9b8a7fba3d19cce8500c8fd25afed8058c8e15f324cbd5b";
}; };
checkInputs = [ zope_testrunner ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = "https://github.com/zopefoundation/zope.contenttype"; homepage = "https://github.com/zopefoundation/zope.contenttype";
description = "A utility module for content-type (MIME type) handling"; description = "A utility module for content-type (MIME type) handling";
license = licenses.zpl20; license = licenses.zpl20;
maintainers = with maintainers; [ goibhniu ]; maintainers = with maintainers; [ goibhniu ];
broken = true;
}; };
} }