about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/scales/default.nix
blob: 0407c1fa86d891d70f80250e3497c23240a0533f (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
{ stdenv
, 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 stdenv.lib; {
    description = "Stats for Python processes";
    homepage = "https://www.github.com/Cue/scales";
    license = licenses.asl20;
  };

}