Merge pull request #71340 from edef1c/pgsanity-deps

pythonPackages.pgsanity: add missing postgresql checkInput
This commit is contained in:
worldofpeace
2019-10-18 20:02:25 +00:00
committed by GitHub
@@ -17,6 +17,7 @@ buildPythonPackage rec {
${python.interpreter} -m unittest discover -s test ${python.interpreter} -m unittest discover -s test
''; '';
checkInputs = [ postgresql ];
propagatedBuildInputs = [ postgresql ]; propagatedBuildInputs = [ postgresql ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
@@ -31,6 +32,5 @@ buildPythonPackage rec {
''; '';
license = stdenv.lib.licenses.mit; license = stdenv.lib.licenses.mit;
maintainers = with maintainers; [ nalbyuites ]; maintainers = with maintainers; [ nalbyuites ];
broken = true;
}; };
} }