1{ lib, fetchPypi, buildPythonPackage, numpy
2}:
3
4buildPythonPackage rec {
5 pname = "plyfile";
6 version = "0.5";
7 name = "${pname}-${version}";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "1cspvhfy2nw1rfwpvrd69wkz0b6clr4wzqpwpmdk872vk2q89yzi";
12 };
13
14 propagatedBuildInputs = [ numpy ];
15
16 meta = with lib; {
17 description = "NumPy-based text/binary PLY file reader/writer for Python";
18 homepage = https://github.com/dranjan/python-plyfile;
19 maintainers = with maintainers; [ abbradar ];
20 };
21
22}