ae2dc6aea6
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pytestCheckHook,
|
|
fetchpatch2,
|
|
six,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "scales";
|
|
version = "1.0.9";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-i2kw99S/EVGSKQtEx1evXiVOP8/Ldf+aUfXJakBOJ1M=";
|
|
};
|
|
|
|
patches = [
|
|
# Use html module in Python 3 and cgi module in Python 2
|
|
# https://github.com/Cue/scales/pull/47
|
|
(fetchpatch2 {
|
|
url = "https://github.com/Cue/scales/commit/ee69d45f1a7f928f7b241702e9be06007444115e.patch?full_index=1";
|
|
hash = "sha256-xBlgkh1mf+3J7GtNI0zGb7Sum8UYbTpUmM12sxK/fSU=";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
for file in scales_test formats_test aggregation_test; do
|
|
substituteInPlace src/greplin/scales/$file.py \
|
|
--replace-fail "assertEquals" "assertEqual"
|
|
done;
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ six ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
meta = {
|
|
description = "Stats for Python processes";
|
|
homepage = "https://www.github.com/Cue/scales";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ pyrox0 ];
|
|
};
|
|
}
|