nixpkgs/pkgs/development/python-modules/carbon/default.nix
Fabian Affolter 62745dce54 python312Packages.carbon: patch cf.readfp
- refactor
- add pythonImportsCheck
2024-09-25 09:36:25 +02:00

67 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
cachetools,
fetchPypi,
nixosTests,
pytestCheckHook,
pythonOlder,
setuptools,
twisted,
txamqp,
urllib3,
whisper,
}:
buildPythonPackage rec {
pname = "carbon";
version = "1.1.10";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchPypi {
inherit pname version;
hash = "sha256-wTtbqRHMWBcM2iFN95yzwCf/BQ+EK0vp5MXT4mKX3lw=";
};
# Carbon-s default installation is /opt/graphite. This env variable ensures
# carbon is installed as a regular Python module.
GRAPHITE_NO_PREFIX = "True";
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; {
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
];
};
}