Unverified Commit 9eb0b6c7 authored by Tom Hunze's avatar Tom Hunze
Browse files

python313Packages.pysam: refactor

parent 05f950d0
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -30,12 +30,15 @@ buildPythonPackage rec {
    hash = "sha256-yOLnfuGQW+j0nHy4MRlwurZMpeRHTGmQ9eLmihcAGoQ=";
  };

  nativeBuildInputs = [
  build-system = [
    cython
    samtools
    setuptools
  ];

  nativeBuildInputs = [
    samtools
  ];

  buildInputs = [
    bzip2
    curl
@@ -73,11 +76,13 @@ buildPythonPackage rec {
    "pysam.libchtslib"
    "pysam.libcutils"
    "pysam.libcvcf"
    "pysam.libcsamtools"
  ];

  meta = {
    description = "Python module for reading, manipulating and writing genome data sets";
    downloadPage = "https://github.com/pysam-developers/pysam";
    changelog = "https://github.com/pysam-developers/pysam/releases/tag/${src.tag}";
    homepage = "https://pysam.readthedocs.io";
    maintainers = with lib.maintainers; [ unode ];
    license = lib.licenses.mit;