Skip to content

Commit

Permalink
plyfile: init at 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
abbradar committed Oct 15, 2017
1 parent 3ee33f3 commit f7d308d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkgs/development/python-modules/plyfile/default.nix
@@ -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 ];
};

}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -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 { };
Expand Down

0 comments on commit f7d308d

Please sign in to comment.