Custom override

This commit is contained in:
2023-05-25 12:51:57 -04:00
parent 5e775250ed
commit 26d6f99ce4

View File

@@ -1,12 +1,14 @@
{ stdenv, lib, fetchFromGitHub, which, autoconf, automake
, zlib, curl
, python2, hexdump, sambamba, samblaster, samtools }: let
, python2, fetchPypi, hexdump, sambamba, samblaster, samtools }: let
python = python2.override {
packageOverrides = final: prev: {
numpy = prev.numpy.overridePythonAttrs(old: rec {
version = "1.16.6";
disabled = false;
src = fetchPypi {
inherit pname version;
inherit version;
pname = "numpy";
extension = "zip";
sha256 = "e5cf3fdf13401885e8eea8170624ec96225e2174eb0c611c6f26dd33b489e3ff";
};