mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 21:53:32 +00:00
62745dce54
- refactor - add pythonImportsCheck
67 lines
1.3 KiB
Nix
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
|
|
];
|
|
};
|
|
}
|