plyfile: init at 0.5
This commit is contained in:
parent
3ee33f35f8
commit
f7d308dbdc
22
pkgs/development/python-modules/plyfile/default.nix
Normal file
22
pkgs/development/python-modules/plyfile/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib, fetchPypi, buildPythonPackage, numpy
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "plyfile";
|
||||
version = "0.5";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1cspvhfy2nw1rfwpvrd69wkz0b6clr4wzqpwpmdk872vk2q89yzi";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
|
||||
}
|
@ -7046,6 +7046,8 @@ in {
|
||||
|
||||
plotly = callPackage ../development/python-modules/plotly { };
|
||||
|
||||
plyfile = callPackage ../development/python-modules/plyfile { };
|
||||
|
||||
podcastparser = callPackage ../development/python-modules/podcastparser { };
|
||||
|
||||
pomegranate = callPackage ../development/python-modules/pomegranate { };
|
||||
|
Loading…
Reference in New Issue
Block a user