pythonPackages.pyperf: 1.6.0 -> 1.6.1

perf was renamed to pyperf [1] to avoid confusion with Linux perf
project.

[1] 60eb936a87
This commit is contained in:
Mario Rodas 2019-09-15 16:00:00 -05:00
parent a52c77fbea
commit ebdaba7205
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8
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 ];
};

View File

@ -821,7 +821,7 @@ in {
pdfx = callPackage ../development/python-modules/pdfx { };
perf = callPackage ../development/python-modules/perf { };
pyperf = callPackage ../development/python-modules/pyperf { };
perfplot = callPackage ../development/python-modules/perfplot { };