python310Packages.derpconf: add pythonImportsCheck
This commit is contained in:
@@ -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; [ ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user