tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.drms: 0.6.0 -> 0.6.2
Fabian Affolter
4 years ago
545bfc24
a143a6dd
+8
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
drms
default.nix
+8
-4
pkgs/development/python-modules/drms/default.nix
reviewed
···
7
7
, astropy
8
8
, pytestCheckHook
9
9
, pytest-doctestplus
10
10
+
, pythonOlder
10
11
}:
11
12
12
13
buildPythonPackage rec {
13
14
pname = "drms";
14
14
-
version = "0.6.0";
15
15
+
version = "0.6.2";
15
16
format = "pyproject";
17
17
+
disabled = pythonOlder "3.7";
16
18
17
19
src = fetchPypi {
18
20
inherit pname version;
19
19
-
sha256 = "74efb903f42647ea536de0c5aea4f9a81efe027c95055ec4e72ef62479a04c89";
21
21
+
sha256 = "sha256-Id8rPK8qq71gHn5DKnEi7Lp081GFbcFtGU+v89Vlt9o=";
20
22
};
21
23
22
24
propagatedBuildInputs = [
···
33
31
pytest-doctestplus
34
32
];
35
33
34
34
+
pythonImportsCheck = [ "drms" ];
35
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
39
-
license = licenses.mit;
40
40
-
maintainers = [ maintainers.costrouc ];
39
39
+
license = licenses.bsd2;
40
40
+
maintainers = with maintainers; [ costrouc ];
41
41
};
42
42
}