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

buildPythonPackage rec {
  pname = "zope.dottedname";
  version = "5.0";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-mfWDqAKFhqtMIXlGE+QR0BDNCZF/RdqXa9/udI87++w=";
  };

  meta = with lib; {
    homepage = "http://pypi.python.org/pypi/zope.dottedname";
    description = "Resolver for Python dotted names";
    license = licenses.zpl20;
    maintainers = with maintainers; [ goibhniu ];
  };

}