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