1{ lib
2, buildPythonPackage
3, fetchPypi
4, nose
5, six
6}:
7
8buildPythonPackage rec {
9 pname = "scales";
10 version = "1.0.9";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "8b6930f7d4bf115192290b44c757af5e254e3fcfcb75ff9a51f5c96a404e2753";
15 };
16
17 nativeCheckInputs = [ nose ];
18 propagatedBuildInputs = [ six ];
19
20 # No tests included
21 doCheck = false;
22
23 meta = with lib; {
24 description = "Stats for Python processes";
25 homepage = "https://www.github.com/Cue/scales";
26 license = licenses.asl20;
27 };
28
29}