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

22 lines
505 B
Nix
Raw Normal View History

2017-10-03 01:50:20 +01:00
{ lib, fetchPypi, buildPythonPackage, numpy
}:
buildPythonPackage rec {
pname = "plyfile";
2018-08-13 08:29:34 +01:00
version = "0.6";
2017-10-03 01:50:20 +01:00
src = fetchPypi {
inherit pname version;
2018-08-13 08:29:34 +01:00
sha256 = "067e384e3723f28dbbd8e8f976a9712dadf6761b2d62c4c1a90821e3c5310bce";
2017-10-03 01:50:20 +01: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 01:50:20 +01:00
maintainers = with maintainers; [ abbradar ];
};
}