My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/django-prometheus/default.nix

51 lines
1000 B

{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, prometheus-client
, pytest-django
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "django-prometheus";
version = "2.2.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "korfuri";
repo = pname;
rev = version;
sha256 = "1y1cmycc545xrys41jk8kia36hwnkwhkw26mlpfdjgb63vq30x1d";
};
patches = [
./drop-untestable-database-backends.patch
];
postPatch = ''
substituteInPlace setup.py \
--replace '"pytest-runner"' ""
'';
propagatedBuildInputs = [
prometheus-client
];
pythonImportsCheck = [
"django_prometheus"
];
checkInputs = [
pytest-django
pytestCheckHook
];
meta = with lib; {
description = "Django middlewares to monitor your application with Prometheus.io";
homepage = "https://github.com/korfuri/django-prometheus";
license = licenses.asl20;
maintainers = with maintainers; [ hexa ];
};
}