summary refs log tree commit diff
path: root/pkgs/development/python-modules/zope_contenttype/default.nix
blob: fc28a740d62b35debea964c86811dbe229ad50f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "zope.contenttype";
  version = "4.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "08c0408f515668e6f0c4fd492b66fbe87a074c1aa21cfc6be8c6292482d8b2f4";
  };

  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;
  };

}