about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/zope-hookable/default.nix
blob: 8ee46c58943f0eee485848366ed0931c9581778d (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
, setuptools
, zope-testing
}:

buildPythonPackage rec {
  pname = "zope-hookable";
  version = "6.0";
  pyproject = true;

  src = fetchPypi {
    pname = "zope.hookable";
    inherit version;
    hash = "sha256-FmiZPUCnz9yGeEPdVyWSnn+DpbDBlccJrx2u+CdPQ8s=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  nativeCheckInputs = [
    zope-testing
  ];

  meta = with lib; {
    description = "Supports the efficient creation of “hookable” objects";
    homepage = "https://github.com/zopefoundation/zope.hookable";
    license = licenses.zpl21;
  };
}