2017-10-03 01:50:20 +01:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, numpy
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "plyfile";
|
2021-02-20 09:09:12 +00:00
|
|
|
version = "0.7.3";
|
2017-10-03 01:50:20 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-02-20 09:09:12 +00:00
|
|
|
sha256 = "5ac55b685cfcb3e8f70f3c5c2660bd1f6431a892a5319a612792b1ec09aec0f0";
|
2017-10-03 01:50:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ numpy ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "NumPy-based text/binary PLY file reader/writer for Python";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/dranjan/python-plyfile";
|
2017-10-03 01:50:20 +01:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|