pythonPackages.line_profiler: 1.0 -> 2.0

This commit is contained in:
Frederik Rietdijk
2017-04-18 11:50:18 +02:00
parent 0cd978c615
commit d9ac6d4d5e
2 changed files with 29 additions and 20 deletions

View File

@@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, cython
, isPyPy
}:
buildPythonPackage rec {
pname = "line_profiler";
version = "2.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "739f8ad0e4bcd0cb82e99afc09e00a0351234f6b3f0b1f7f0090a8a2fbbf8381";
};
buildInputs = [ cython ];
disabled = isPyPy;
meta = {
description = "Line-by-line profiler";
homepage = https://github.com/rkern/line_profiler;
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ];
};
}