4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
50 lines
1.1 KiB
Nix
50 lines
1.1 KiB
Nix
{ lib, stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy27
|
|
, pytest
|
|
, mock
|
|
, dcm2niix
|
|
, nibabel
|
|
, pydicom
|
|
, nipype
|
|
, dcmstack
|
|
, etelemetry
|
|
, filelock
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.8.0";
|
|
pname = "heudiconv";
|
|
|
|
disabled = isPy27;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
#sha256 = "0gzqqa4pzhywdbvks2qjniwhr89sgipl5k7h9hcjs7cagmy9gb05";
|
|
sha256 = "1r6y93125mc84c09970ifps5xysp8ffp62rwlzili3q2k1m3fh4v";
|
|
};
|
|
|
|
postPatch = ''
|
|
# doesn't exist as a separate package with Python 3:
|
|
substituteInPlace heudiconv/info.py --replace "'pathlib'," ""
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
dcm2niix nibabel pydicom nipype dcmstack etelemetry filelock
|
|
];
|
|
|
|
checkInputs = [ dcm2niix pytest mock ];
|
|
|
|
# test_monitor and test_dlad require 'inotify' and 'datalad' respectively,
|
|
# and these aren't in Nixpkgs
|
|
checkPhase = "pytest -k 'not test_dlad and not test_monitor' heudiconv/tests";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://heudiconv.readthedocs.io";
|
|
description = "Flexible DICOM converter for organizing imaging data";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
};
|
|
}
|