nixpkgs/pkgs/development/python-modules/plyfile/default.nix

22 lines
507 B
Nix
Raw Normal View History

2017-10-03 00:50:20 +00:00
{ lib, fetchPypi, buildPythonPackage, numpy
}:
buildPythonPackage rec {
pname = "plyfile";
2019-10-16 09:43:11 +00:00
version = "0.7.1";
2017-10-03 00:50:20 +00:00
src = fetchPypi {
inherit pname version;
2019-10-16 09:43:11 +00:00
sha256 = "b119705dec157314cf504e9d2d6f7d5a76606495a778b673c2864ac92895dced";
2017-10-03 00:50:20 +00:00
};
propagatedBuildInputs = [ numpy ];
meta = with lib; {
description = "NumPy-based text/binary PLY file reader/writer for Python";
homepage = https://github.com/dranjan/python-plyfile;
2017-10-03 00:50:20 +00:00
maintainers = with maintainers; [ abbradar ];
};
}