aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/zope_contenttype/default.nix
blob: 9dac64907be9d880da38f46191a801699bfd375c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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 ];
  };

}