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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
564 B
Nix
Raw Normal View History

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