33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
29 lines
784 B
Nix
29 lines
784 B
Nix
{ buildPythonPackage, fetchPypi, lib, pypiserver, pytestCheckHook
|
|
, setuptools-scm, virtualenv }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "setuptools-declarative-requirements";
|
|
version = "1.3.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-V6W5u5rTUMJ46Kpr5M3rvNklubpx1qcSoXimGM+4mPc=";
|
|
};
|
|
|
|
buildInputs = [ setuptools-scm ];
|
|
|
|
nativeCheckInputs = [ pypiserver pytestCheckHook virtualenv ];
|
|
|
|
# Tests use network
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "declarative_requirements" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/s0undt3ch/setuptools-declarative-requirements";
|
|
description = "Declarative setuptools Config Requirements Files Support";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.austinbutler ];
|
|
};
|
|
}
|