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
commit 0e834b10f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -17,6 +17,7 @@ buildPythonPackage rec {
${python.interpreter} -m unittest discover -s test
'';
checkInputs = [ postgresql ];
propagatedBuildInputs = [ postgresql ];
meta = with stdenv.lib; {
@ -31,6 +32,5 @@ buildPythonPackage rec {
'';
license = stdenv.lib.licenses.mit;
maintainers = with maintainers; [ nalbyuites ];
broken = true;
};
}