Merge pull request #68866 from marsam/update-python-pyperf

pythonPackages.pyperf: 1.6.0 -> 1.6.1
This commit is contained in:
Mario Rodas
2019-09-18 18:16:44 -05:00
committed by GitHub
2 changed files with 5 additions and 5 deletions

View File

@@ -14,12 +14,12 @@
}:
buildPythonPackage rec {
pname = "perf";
version = "1.6.0";
pname = "pyperf";
version = "1.6.1";
src = fetchPypi {
inherit pname version;
sha256 = "1vrv83v8rhyl51yaxlqzw567vz5a9qwkymk3vqvcl5sa2yd3mzgp";
sha256 = "8d0143a22a13ee10c997a648f30b82cdc40175d5a20b11055ae058a82e45d371";
};
checkInputs = [ nose psutil ] ++
@@ -36,7 +36,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python module to generate and modify perf";
homepage = https://github.com/vstinner/perf;
homepage = "https://pyperf.readthedocs.io/";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};