depot/third_party/nixpkgs/pkgs/development/python-modules/plyfile/default.nix
Default email 2c76a4cb41 Project import generated by Copybara.
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
2023-11-16 04:20:00 +00:00

21 lines
496 B
Nix

{ lib, fetchPypi, buildPythonPackage, numpy
}:
buildPythonPackage rec {
pname = "plyfile";
version = "1.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-TOrt8e2Ss6Jrdm/IxWzaG5sjkOwpmxbe3i5f1FCXJho=";
};
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 ];
};
}