mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 08:26:37 +01:00
Diff: https://github.com/zopefoundation/zope.interface/compare/7.2...8.0.1 Changelog: https://github.com/zopefoundation/zope.interface/blob/8.0.1/CHANGES.rst
35 lines
860 B
Nix
35 lines
860 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zope-interface";
|
|
version = "8.0.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zopefoundation";
|
|
repo = "zope.interface";
|
|
tag = version;
|
|
hash = "sha256-IYtfd9mJLcwk3FGPWlD5PbrKdIwDQf1Thn6fWFa5Rpo=";
|
|
};
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|