Merge pull request #92280 from jonringer/fix-zope-contenttype

python3Packages.zope_contenttype: fix build
This commit is contained in:
Benjamin Hipple 2020-07-04 12:35:33 -04:00 committed by GitHub
commit ad5f34afa2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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