1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, slicerator
5, scikitimage
6, six
7, numpy
8, tifffile
9, pytest
10, nose
11}:
12
13buildPythonPackage rec {
14 version = "0.4.1";
15 pname = "PIMS";
16
17 src = fetchPypi {
18 inherit pname version;
19 sha256 = "6a53a155e900b44e71127a1e1fccbfbaed7eec3c2b52497c40c23a05f334c9dd";
20 };
21
22 checkInputs = [ nose ];
23 propagatedBuildInputs = [ slicerator six numpy tifffile scikitimage ];
24
25 # not everything packaged with pypi release
26 doCheck = false;
27
28 meta = with stdenv.lib; {
29 homepage = https://github.com/soft-matter/pims;
30 description = "Python Image Sequence: Load video and sequential images in many formats with a simple, consistent interface";
31 license = licenses.bsdOriginal;
32 maintainers = [ maintainers.costrouc ];
33 };
34}