python3Packages.drms: 0.6.2 -> 0.6.3

This commit is contained in:
Martin Weinelt 2022-12-30 20:13:07 +01:00
parent 700bba8df4
commit a05f69498f

View File

@ -13,13 +13,13 @@
buildPythonPackage rec {
pname = "drms";
version = "0.6.2";
version = "0.6.3";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Id8rPK8qq71gHn5DKnEi7Lp081GFbcFtGU+v89Vlt9o=";
sha256 = "sha256-crPVo7ALErZWvNcsaJ/BuBa0VkfCsZ+C929x4kEZHKw=";
};
nativeBuildInputs = [
@ -38,6 +38,14 @@ buildPythonPackage rec {
pytest-doctestplus
];
disabledTests = [
"test_query_hexadecimal_strings"
];
disabledTestPaths = [
"docs/tutorial.rst"
];
pythonImportsCheck = [ "drms" ];
meta = with lib; {