My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/zope_contenttype/default.nix

24 lines
563 B

{ lib
, buildPythonPackage
, fetchPypi
, zope_testrunner
}:
buildPythonPackage rec {
pname = "zope.contenttype";
version = "4.5.0";
src = fetchPypi {
inherit pname version;
sha256 = "c12d929c67ab3eaef9b8a7fba3d19cce8500c8fd25afed8058c8e15f324cbd5b";
};
checkInputs = [ zope_testrunner ];
meta = with 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 ];
};
}