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

22 lines
505 B
Nix
Raw Normal View History

2017-10-03 02:50:20 +02:00
{ lib, fetchPypi, buildPythonPackage, numpy
}:
buildPythonPackage rec {
pname = "plyfile";
2019-02-14 08:37:24 +01:00
version = "0.7";
2017-10-03 02:50:20 +02:00
src = fetchPypi {
inherit pname version;
2019-02-14 08:37:24 +01:00
sha256 = "84ba5ee8c70a4924f64aa7edff5764b929f3b7842d53a3197d0b753818ad7089";
2017-10-03 02:50:20 +02: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 02:50:20 +02:00
maintainers = with maintainers; [ abbradar ];
};
}