mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
31 lines
688 B
Nix
31 lines
688 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytest
|
|
, py-cpuinfo
|
|
, pythonOlder
|
|
, pathlib
|
|
, statistics
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-benchmark";
|
|
version = "3.2.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ionelmc";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1hslzzinpwc1zqhbpllqh3sllmiyk69pcycl7ahr0rz3micgwczj";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pytest py-cpuinfo ] ++ lib.optionals (pythonOlder "3.4") [ pathlib statistics ];
|
|
|
|
meta = {
|
|
description = "Py.test fixture for benchmarking code";
|
|
homepage = "https://github.com/ionelmc/pytest-benchmark";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = with lib.maintainers; [ costrouc ];
|
|
};
|
|
}
|