python3Packages.radio_beam: fix version detection by adding setuptools-scm

This commit is contained in:
Martin Weinelt 2021-11-05 22:32:01 +01:00
parent 7c6bf2334f
commit 678cf220a7

View file

@ -1,6 +1,7 @@
{ lib { lib
, fetchPypi , fetchPypi
, buildPythonPackage , buildPythonPackage
, setuptools-scm
, astropy , astropy
, pytestCheckHook , pytestCheckHook
, pytest-doctestplus , pytest-doctestplus
@ -17,6 +18,10 @@ buildPythonPackage rec {
sha256 = "e34902d91713ccab9f450b9d3e82317e292cf46a30bd42f9ad3c9a0519fcddcd"; sha256 = "e34902d91713ccab9f450b9d3e82317e292cf46a30bd42f9ad3c9a0519fcddcd";
}; };
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [ astropy ]; propagatedBuildInputs = [ astropy ];
checkInputs = [ pytestCheckHook pytest-doctestplus scipy ]; checkInputs = [ pytestCheckHook pytest-doctestplus scipy ];