pythonPackages.pims: init at 0.4.1

This commit is contained in:
Chris Ostrouchov 2018-09-13 16:41:13 -04:00
parent 41cd200b64
commit 1a67a15c6f
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, slicerator
, scikitimage
, six
, numpy
, tifffile
, pytest
, nose
}:
buildPythonPackage rec {
version = "0.4.1";
pname = "PIMS";
src = fetchPypi {
inherit pname version;
sha256 = "6a53a155e900b44e71127a1e1fccbfbaed7eec3c2b52497c40c23a05f334c9dd";
};
checkInputs = [ nose ];
propagatedBuildInputs = [ slicerator six numpy tifffile scikitimage ];
# not everything packaged with pypi release
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/soft-matter/pims;
description = "Python Image Sequence: Load video and sequential images in many formats with a simple, consistent interface";
license = licenses.bsdOriginal;
maintainers = [ maintainers.costrouc ];
};
}

View file

@ -386,6 +386,8 @@ in {
phonopy = callPackage ../development/python-modules/phonopy { };
pims = callPackage ../development/python-modules/pims { };
plantuml = callPackage ../tools/misc/plantuml { };
pymysql = callPackage ../development/python-modules/pymysql { };