nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.drms: 0.6.0 -> 0.6.2

+8 -4
+8 -4
pkgs/development/python-modules/drms/default.nix
··· 7 7 , astropy 8 8 , pytestCheckHook 9 9 , pytest-doctestplus 10 + , pythonOlder 10 11 }: 11 12 12 13 buildPythonPackage rec { 13 14 pname = "drms"; 14 - version = "0.6.0"; 15 + version = "0.6.2"; 15 16 format = "pyproject"; 17 + disabled = pythonOlder "3.7"; 16 18 17 19 src = fetchPypi { 18 20 inherit pname version; 19 - sha256 = "74efb903f42647ea536de0c5aea4f9a81efe027c95055ec4e72ef62479a04c89"; 21 + sha256 = "sha256-Id8rPK8qq71gHn5DKnEi7Lp081GFbcFtGU+v89Vlt9o="; 20 22 }; 21 23 22 24 propagatedBuildInputs = [ ··· 33 31 pytest-doctestplus 34 32 ]; 35 33 34 + pythonImportsCheck = [ "drms" ]; 35 + 36 36 meta = with lib; { 37 37 description = "Access HMI, AIA and MDI data with Python"; 38 38 homepage = "https://github.com/sunpy/drms"; 39 - license = licenses.mit; 40 - maintainers = [ maintainers.costrouc ]; 39 + license = licenses.bsd2; 40 + maintainers = with maintainers; [ costrouc ]; 41 41 }; 42 42 }