mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
pythonPackages.graphite_api: fix testing, make more nix-shell friendly
This commit is contained in:
parent
75aaeca9d2
commit
4d261e64f6
|
@ -10336,8 +10336,7 @@ let
|
|||
sha256 = "41b90d5f35e99a020a6b1b77938690652521d1841b3165574fcfcee807ce4e6a";
|
||||
};
|
||||
|
||||
# ImportError: No module named tests
|
||||
doCheck = false;
|
||||
checkPhase = "nosetests";
|
||||
|
||||
propagatedBuildInputs = [
|
||||
flask
|
||||
|
@ -10352,8 +10351,15 @@ let
|
|||
tzlocal
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
nose
|
||||
mock
|
||||
];
|
||||
|
||||
LD_LIBRARY_PATH = "${pkgs.cairo}/lib";
|
||||
|
||||
meta = {
|
||||
description = "Graphite-web, without the interface. Just the rendering HTTP API.";
|
||||
description = "Graphite-web, without the interface. Just the rendering HTTP API.";
|
||||
homepage = https://github.com/brutasse/graphite-api;
|
||||
license = licenses.asl20;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue