pythonPackages.graphitepager: drop
This module is python2 only. Upstream repo does not exist in github anymore (returns 404), so it is safer to drop it in nixpkgs.
This commit is contained in:
parent
37ffa6ea51
commit
0e6e3ddb2d
@ -1,32 +0,0 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi
|
|
||||||
, jinja2, markupsafe, pagerduty, pushbullet, python_magic, python-simple-hipchat
|
|
||||||
, pyyaml, redis, requests, six, websocket_client, nose
|
|
||||||
}:
|
|
||||||
buildPythonPackage rec {
|
|
||||||
pname = "graphitepager";
|
|
||||||
version = "0.2.11";
|
|
||||||
|
|
||||||
src = fetchPypi {
|
|
||||||
inherit pname version;
|
|
||||||
sha256 = "0v3g1qcgnkpgjzh6phnv13lnk8qjrcs9sq2qg6k0dk5ik31jfk3d";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
|
||||||
jinja2 markupsafe pagerduty pushbullet python_magic python-simple-hipchat
|
|
||||||
pyyaml redis requests six websocket_client
|
|
||||||
];
|
|
||||||
|
|
||||||
postPatch = ''
|
|
||||||
substituteInPlace requirements.txt --replace "==" ">="
|
|
||||||
'';
|
|
||||||
|
|
||||||
checkInputs = [ nose ];
|
|
||||||
checkPhase = "nosetests";
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
description = "A simple alerting application for Graphite metrics";
|
|
||||||
homepage = https://github.com/seatgeek/graphite-pager;
|
|
||||||
maintainers = with maintainers; [ offline basvandijk ];
|
|
||||||
license = licenses.bsd2;
|
|
||||||
};
|
|
||||||
}
|
|
@ -6411,8 +6411,6 @@ in {
|
|||||||
|
|
||||||
influxgraph = callPackage ../development/python-modules/influxgraph { };
|
influxgraph = callPackage ../development/python-modules/influxgraph { };
|
||||||
|
|
||||||
graphitepager = callPackage ../development/python-modules/graphitepager { };
|
|
||||||
|
|
||||||
pyspotify = callPackage ../development/python-modules/pyspotify { };
|
pyspotify = callPackage ../development/python-modules/pyspotify { };
|
||||||
|
|
||||||
pykka = callPackage ../development/python-modules/pykka { };
|
pykka = callPackage ../development/python-modules/pykka { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user