depot/third_party/nixpkgs/pkgs/development/python-modules/slicedimage/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

57 lines
1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, boto3
, diskcache
, enum34
, packaging
, pathlib
, numpy
, requests
, scikit-image
, six
, pytestCheckHook
, isPy27
, tifffile
}:
buildPythonPackage rec {
pname = "slicedimage";
version = "4.1.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "spacetx";
repo = pname;
rev = version;
sha256 = "1vpg8varvfx0nj6xscdfm7m118hzsfz7qfzn28r9rsfvrhr0dlcw";
};
propagatedBuildInputs = [
boto3
diskcache
packaging
numpy
requests
scikit-image
six
tifffile
] ++ lib.optionals isPy27 [ pathlib enum34 ];
nativeCheckInputs = [
pytestCheckHook
];
# Ignore tests which require setup, check again if disabledTestFiles can be used
pytestFlagsArray = [ "--ignore tests/io_" ];
pythonImportsCheck = [ "slicedimage" ];
meta = with lib; {
description = "Library to access sliced imaging data";
mainProgram = "slicedimage";
homepage = "https://github.com/spacetx/slicedimage";
license = licenses.mit;
maintainers = [ ];
};
}