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

22 lines
509 B
Nix
Raw Normal View History

2017-10-03 01:50:20 +01:00
{ lib, fetchPypi, buildPythonPackage, numpy
}:
buildPythonPackage rec {
pname = "plyfile";
2019-10-16 10:43:11 +01:00
version = "0.7.1";
2017-10-03 01:50:20 +01:00
src = fetchPypi {
inherit pname version;
2019-10-16 10:43:11 +01:00
sha256 = "b119705dec157314cf504e9d2d6f7d5a76606495a778b673c2864ac92895dced";
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 ];
};
}