about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2015-11-30 13:22:56 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2015-11-30 13:22:56 +0100
commitd12aadf87f8486636eef949e1934ddc1b6923d2a (patch)
tree28d0885816f3a370b1e8c7978c66c366321ff58b /pkgs
parentc497ac6307e87e8d4c30a07c3040b2e8dd17356a (diff)
downloadnixlib-d12aadf87f8486636eef949e1934ddc1b6923d2a.tar
nixlib-d12aadf87f8486636eef949e1934ddc1b6923d2a.tar.gz
nixlib-d12aadf87f8486636eef949e1934ddc1b6923d2a.tar.bz2
nixlib-d12aadf87f8486636eef949e1934ddc1b6923d2a.tar.lz
nixlib-d12aadf87f8486636eef949e1934ddc1b6923d2a.tar.xz
nixlib-d12aadf87f8486636eef949e1934ddc1b6923d2a.tar.zst
nixlib-d12aadf87f8486636eef949e1934ddc1b6923d2a.zip
python line_profiler: init at 1.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/python-packages.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 776342589742..1463ddb9c94c 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -9091,6 +9091,24 @@ in modules // {
     };
   };
 
+  line_profiler = buildPythonPackage rec{
+    version = "1.0";
+    name = "line_profiler-${version}";
+
+    src = pkgs.fetchurl {
+      url = "https://pypi.python.org/packages/source/l/line_profiler/${name}.tar.gz";
+      sha256 = "a9e0c9ffa814f1215107c86c890afa8e63bec5a37d951f6f9d3668c1df2b1900";
+    };
+
+    buildInputs = with self; [ cython ];
+
+    meta = {
+      description = "Line-by-line profiler";
+      homepage = https://github.com/rkern/line_profiler;
+      license = licenses.bsd3;
+      maintainer = with maintainers; [ fridh ];
+    };
+  };
 
   linode = buildPythonPackage rec {
     name = "linode-${version}";