nixpkgs/pkgs/development/python-modules/line_profiler/default.nix
Frederik Rietdijk ced21f5e1a pythonPackages: remove name attribute`
The `buildPython*` function computes name from `pname` and `version`.
This change removes `name` attribute from all expressions in
`pkgs/development/python-modules`.

While at it, some other minor changes were made as well, such as
replacing `fetchurl` calls with `fetchPypi`.
2018-06-23 18:14:26 +02:00

35 lines
659 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, cython
, isPyPy
, ipython
, python
}:
buildPythonPackage rec {
pname = "line_profiler";
version = "2.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "efa66e9e3045aa7cb1dd4bf0106e07dec9f80bc781a993fbaf8162a36c20af5c";
};
buildInputs = [ cython ];
propagatedBuildInputs = [ ipython ];
disabled = isPyPy;
checkPhase = ''
${python.interpreter} -m unittest discover -s tests
'';
meta = {
description = "Line-by-line profiler";
homepage = https://github.com/rkern/line_profiler;
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ];
};
}