1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-25 02:26:19 +03:00
nixpkgs/pkgs/development/python-modules/xlrd/default.nix

30 lines
557 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
2021-03-24 13:21:58 +01:00
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "xlrd";
2021-03-24 10:28:32 +01:00
version = "2.0.1";
src = fetchPypi {
inherit pname version;
2021-03-24 10:28:32 +01:00
sha256 = "f72f148f54442c6b056bf931dbc34f986fd0c3b0b6b5a58d013c9aef274d0c88";
};
2021-03-24 13:21:58 +01:00
checkInputs = [
pytestCheckHook
];
2021-03-24 13:21:58 +01:00
# No tests in archive
doCheck = false;
meta = with lib; {
homepage = "http://www.python-excel.org/";
description = "Library for developers to extract data from Microsoft Excel (tm) spreadsheet files";
license = licenses.bsd0;
};
}