about summary refs log tree commit diff
path: root/pkgs/development/python-modules/zope_contenttype/default.nix
blob: 67c5a986688052acf209a2b993593272809c4ca0 (plain) (blame)
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.0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "9decc7531ad6925057f1a667ac0ef9d658577a92b0b48dafa7daa97b78a02bbb";
  };

  meta = with stdenv.lib; {
    homepage = http://github.com/zopefoundation/zope.contenttype;
    description = "A utility module for content-type (MIME type) handling";
    license = licenses.zpl20;
    maintainers = with maintainers; [ goibhniu ];
  };

}