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
commit 9d09cf0fc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

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

View File

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