From f25e8a6d782fd8814179095a38b05f74c51e5ec2 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Sat, 28 Sep 2019 21:27:04 -0700 Subject: [PATCH] python3Packages.cnvkit: fix build --- pkgs/development/python-modules/cnvkit/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/cnvkit/default.nix b/pkgs/development/python-modules/cnvkit/default.nix index 905b274a0552..054e302dfe76 100644 --- a/pkgs/development/python-modules/cnvkit/default.nix +++ b/pkgs/development/python-modules/cnvkit/default.nix @@ -39,6 +39,11 @@ buildPythonPackage rec { pomegranate ]; + postPatch = '' + substituteInPlace setup.py \ + --replace "pandas >= 0.20.1, < 0.25.0" "pandas" + ''; + meta = with lib; { homepage = "https://cnvkit.readthedocs.io"; description = "A Python library and command-line software toolkit to infer and visualize copy number from high-throughput DNA sequencing data";