summary refs log tree commit diff
path: root/pkgs/development/python-modules/zope_location/default.nix
blob: d0f79775d12b8017c10bdca75a56eb41eb9fc40d (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
24
25
26
27
28
29
30
31
32
{ lib
, buildPythonPackage
, fetchPypi
, zope-proxy
}:

buildPythonPackage rec {
  pname = "zope.location";
  version = "4.3";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-Fx7tyKIOw6isJxOaqQzyd/93dy6gMrVLaicBp5J7OsU=";
  };

  propagatedBuildInputs = [ zope-proxy ];

  # ignore circular dependency on zope_schema
  preBuild = ''
    sed -i '/zope.schema/d' setup.py
  '';

  doCheck = false;

  meta = with lib; {
    homepage = "https://github.com/zopefoundation/zope.location/";
    description = "Zope Location";
    license = licenses.zpl20;
    maintainers = with maintainers; [ goibhniu ];
  };

}