mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
22 lines
509 B
Nix
22 lines
509 B
Nix
{ lib, fetchPypi, buildPythonPackage, numpy
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "plyfile";
|
|
version = "0.7.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "5ac55b685cfcb3e8f70f3c5c2660bd1f6431a892a5319a612792b1ec09aec0f0";
|
|
};
|
|
|
|
propagatedBuildInputs = [ numpy ];
|
|
|
|
meta = with lib; {
|
|
description = "NumPy-based text/binary PLY file reader/writer for Python";
|
|
homepage = "https://github.com/dranjan/python-plyfile";
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
|
|
}
|