summary refs log tree commit diff
path: root/pkgs/development/python-modules/scales/default.nix
blob: 3806ffb9d46b8ce56c3af75e82e3d1f4064c963d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib
, buildPythonPackage
, fetchPypi
, nose
, six
}:

buildPythonPackage rec {
  pname = "scales";
  version = "1.0.9";

  src = fetchPypi {
    inherit pname version;
    sha256 = "8b6930f7d4bf115192290b44c757af5e254e3fcfcb75ff9a51f5c96a404e2753";
  };

  checkInputs = [ nose ];
  propagatedBuildInputs = [ six ];

  # No tests included
  doCheck = false;

  meta = with lib; {
    description = "Stats for Python processes";
    homepage = "https://www.github.com/Cue/scales";
    license = licenses.asl20;
  };

}