about summary refs log tree commit diff
path: root/pkgs/development/python-modules/HTSeq/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/HTSeq/default.nix')
-rw-r--r--pkgs/development/python-modules/HTSeq/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/HTSeq/default.nix b/pkgs/development/python-modules/HTSeq/default.nix
index 83263f734bd45..178b6a7b85cd4 100644
--- a/pkgs/development/python-modules/HTSeq/default.nix
+++ b/pkgs/development/python-modules/HTSeq/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildPythonPackage, fetchFromGitHub, cython, numpy, pysam, matplotlib, python, isPy27, isPy3k }:
+{ lib, stdenv, buildPythonPackage, fetchFromGitHub, cython, numpy, pysam, matplotlib, python, isPy27, isPy3k }:
 buildPythonPackage rec {
   version = "0.12.4";
   pname = "HTSeq";
@@ -19,7 +19,7 @@ buildPythonPackage rec {
     ${python.interpreter} python3/test/test_general.py
   '';
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     homepage = "https://htseq.readthedocs.io/";
     description = "A framework to work with high-throughput sequencing data";
     maintainers = with maintainers; [ unode ];