Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 554213b526c5
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 448bed5653ec
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Oct 4, 2019

  1. HTSeq: init at 0.11.2

    unode authored and Lassulus committed Oct 4, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    tadeokondrak Tadeo Kondrak
    Copy the full SHA
    448bed5 View commit details
Showing with 22 additions and 0 deletions.
  1. +20 −0 pkgs/development/python-modules/HTSeq/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
20 changes: 20 additions & 0 deletions pkgs/development/python-modules/HTSeq/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{ stdenv, buildPythonPackage, fetchPypi, cython, numpy, pysam, matplotlib
}:
buildPythonPackage rec {
version = "0.11.2";
pname = "HTSeq";

src = fetchPypi {
inherit pname version;
sha256 = "65c4c13968506c7df92e97124df96fdd041c4476c12a548d67350ba8b436bcfc";
};

buildInputs = [ cython numpy pysam ];
propagatedBuildInputs = [ numpy pysam matplotlib ];

meta = with stdenv.lib; {
description = "A framework to work with high-throughput sequencing data";
maintainers = with maintainers; [ unode ];
platforms = platforms.unix;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -1698,6 +1698,8 @@ in {
inherit (pkgs) pkgconfig;
};

HTSeq = callPackage ../development/python-modules/HTSeq { };

httpserver = callPackage ../development/python-modules/httpserver {};

bleach = callPackage ../development/python-modules/bleach { };