python312Packages.carbon: patch cf.readfp (#344373)

This commit is contained in:
Fabian Affolter 2024-09-26 10:49:01 +02:00 committed by GitHub
commit b25fb7b714
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,19 +1,24 @@
{
lib,
buildPythonPackage,
fetchPypi,
twisted,
whisper,
txamqp,
cachetools,
urllib3,
fetchPypi,
nixosTests,
pytestCheckHook,
pythonOlder,
setuptools,
twisted,
txamqp,
urllib3,
whisper,
}:
buildPythonPackage rec {
pname = "carbon";
version = "1.1.10";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchPypi {
inherit pname version;
@ -21,28 +26,41 @@ buildPythonPackage rec {
};
# Carbon-s default installation is /opt/graphite. This env variable ensures
# carbon is installed as a regular python module.
# carbon is installed as a regular Python module.
GRAPHITE_NO_PREFIX = "True";
propagatedBuildInputs = [
twisted
whisper
txamqp
postPatch = ''
substituteInPlace setup.py \
--replace-fail "cf.readfp(f, 'setup.cfg')" "cf.read(f, 'setup.cfg')"
'';
build-system = [ setuptools ];
dependencies = [
cachetools
twisted
txamqp
urllib3
whisper
];
# Tests are not shipped with PyPI
doCheck = false;
passthru.tests = {
inherit (nixosTests) graphite;
};
pythonImportsCheck = [ "carbon" ];
meta = with lib; {
homepage = "http://graphiteapp.org/";
description = "Backend data caching and persistence daemon for Graphite";
homepage = "https://github.com/graphite-project/carbon";
changelog = "https://github.com/graphite-project/carbon/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [
offline
basvandijk
];
license = licenses.asl20;
};
}