mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 08:26:37 +01:00
https://github.com/zopefoundation/zope.interface/blob/8.2/CHANGES.rst This commit was automatically generated using update-python-libraries.
35 lines
858 B
Nix
35 lines
858 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zope-interface";
|
|
version = "8.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zopefoundation";
|
|
repo = "zope.interface";
|
|
tag = version;
|
|
hash = "sha256-hOcg41lcdVWfmT2DqaYzzu4bJZYiG2y5boylJevBv6k=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
pythonImportsCheck = [ "zope.interface" ];
|
|
|
|
doCheck = false; # Circular deps.
|
|
|
|
pythonNamespaces = [ "zope" ];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/zopefoundation/zope.interface/blob/${src.tag}/CHANGES.rst";
|
|
description = "Implementation of object interfaces, a mechanism for labeling objects as conforming to a given API or contract";
|
|
homepage = "https://github.com/zopefoundation/zope.interface";
|
|
license = lib.licenses.zpl21;
|
|
maintainers = [ ];
|
|
};
|
|
}
|