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