Unverified Commit 7473be8f authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python310Packages.derpconf: add pythonImportsCheck

parent 3be3df07
Loading
Loading
Loading
Loading
+14 −3
Original line number Diff line number Diff line
{ 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; [ ];
  };
}