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: 27a6b2613aa0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: acde032d7b15
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 5, 2019

  1. pysam: 0.15.2 -> 0.15.3

    unode committed Oct 5, 2019
    Copy the full SHA
    bed6814 View commit details
  2. Merge pull request #70443 from unode/pysam

    pysam: 0.15.2 -> 0.15.3
    mmahut authored Oct 5, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    acde032 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/python-modules/pysam/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/pysam/default.nix
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@

buildPythonPackage rec {
pname = "pysam";
version = "0.15.2";
version = "0.15.3";

# Fetching from GitHub instead of PyPi cause the 0.13 src release on PyPi is
# missing some files which cause test failures.
@@ -23,7 +23,7 @@ buildPythonPackage rec {
owner = "pysam-developers";
repo = "pysam";
rev = "v${version}";
sha256 = "03aczbzx6gmvgy60fhswpwkry7a8zb5q1pbp55v5gx8hk15n40k1";
sha256 = "0g6md20gsr24pdr9b8nj403w31ixfjv8bjhdvg3x476kjiq1kvyb";
};

buildInputs = [ bzip2 curl cython lzma zlib ];