depot/third_party/nixpkgs/pkgs/development/python-modules/scales/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

30 lines
557 B
Nix

{
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;
};
}