about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/scales/default.nix
blob: 9c7ebfe8e9a02a7af1af00b3576efc8986c9ce30 (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
30
{ lib
, buildPythonPackage
, fetchPypi
, nose
, six
}:

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

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

  nativeCheckInputs = [ 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;
  };

}