python310Packages.derpconf: add pythonImportsCheck

This commit is contained in:
Fabian Affolter
2023-11-05 12:22:28 +01:00
committed by GitHub
parent 3be3df0702
commit 7473be8fbd
@@ -1,4 +1,8 @@
{ lib, buildPythonPackage, fetchPypi, six }:
{ lib
, buildPythonPackage
, fetchPypi
, six
}:
buildPythonPackage rec {
pname = "derpconf";
@@ -9,12 +13,19 @@ buildPythonPackage rec {
sha256 = "sha256-66MOqcWIiqJrORJDgAH5iUblHyqJvuf9DIBN56XjKwU=";
};
propagatedBuildInputs = [ six ];
propagatedBuildInputs = [
six
];
pythonImportsCheck = [
"derpconf"
];
meta = with lib; {
description = "derpconf abstracts loading configuration files for your app";
description = "Module to abstract loading configuration files for your app";
homepage = "https://github.com/globocom/derpconf";
changelog = "https://github.com/globocom/derpconf/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}